.fullscreen-img {
    position: fixed; /* Fixed position to keep it centered even when scrolling */
    top: 0;
    left: 0;
    width: auto; /* Adjust the width based on the image's aspect ratio */
    height: auto; /* Adjust the height based on the image's aspect ratio */
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.692); /* Darken background when full-screen */
    z-index: 10000;
    cursor: pointer;
}

/* Hide the image in full screen initially */
.hidden {
    display: none;
}

.logo {
width: 50%;
max-width: 400px;
}

.deck {
    position: relative;
    display: inline-block;
    margin: 5px;
    border: 1px solid;

    border-color: rgb(22, 22, 22);
    border-radius: 5px;
    background-color: rgb(41, 41, 41);
    overflow: hidden;
}

.deck_image {
    height: 256px;
    width: 183.5px;
    
}

.mobile_search {
    @media (min-width: 999px){
          display: none;
}
}

.mobile_search_big {
    @media (max-width: 999px){
        display: none;
}  
}

.green {
    
    border-color: green !important;
}

.search {
    width: 400px;
    margin: auto;
}

.pokemon_card {
    height: 256px;
    width: 183.5px;
    transition: transform .2s; /* Animation */

  }

  .pokemon_card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: size 2;
  }

  .pokemon_card_deck {
    height: 256px;
    width: 183.5px;
    transition: transform .2s; /* Animation */

  }

.card_container {
    position: relative;
    display: inline-block;
    margin: 5px;
    border: 1px solid;
    overflow: hidden;

    border-color: rgb(22, 22, 22);
    border-radius: 5px;
    background-color: rgb(41, 41, 41);
}

.card_container_deck {
    position: relative;
    display: inline-block;
    margin: 5px;
    border: 1px solid;
    overflow: hidden;

    border-color: rgb(22, 22, 22);
    border-radius: 5px;
    background-color: rgb(41, 41, 41);
}

.status_bar {
    width: 100%;
    /* background-color: rgb(41, 41, 41); */
    text-align: center;
}

a {
    color: unset;
}

.login_box {
    max-width: 400px;
    padding-top: 50px;
}


.card_information{
    position: absolute;
    top: 180px;
    text-align: left;
    font-size: 12px;
}

.pokemon_name{
    max-width: 185px;
    word-break: break-all;
}

.deck_cards {
    display: inline-block;
    vertical-align: top;
    border: 1px solid;
    border-color: rgb(15, 88, 0);
    border-radius: 5px;
    width: 49%;
    height: 90vh;
    overflow:auto;
}

.my_cards {
    display: inline-block;
    vertical-align: top;
    border: 1px solid;
    border-color: rgb(68, 68, 68);
    border-radius: 5px;
    width: 49%;
    height: 90vh;
    overflow:auto;
}

.dragging {
    opacity: 0.5;
}

.moving {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
}

.paging {
    position: sticky;
    bottom: 0;
    padding-bottom: 10px;
}


    