.bg-dashboard{
    background-image: url(/storage/card-bg.png) !important;
    background-repeat: repeat-x !important;
    background-size: 20rem !important;
}

@media(max-width: 760px){

    body{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.card-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background: var(--bs-body-bg);
    overflow: auto;
    padding: 2rem;
    margin: 0;
    border-radius: 0;
}

.card-fullscreen .btn-exit-fullscreen {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1060;
}

.btn-emoji:hover {
    background: #ffb74d94;
    border-radius: 9px;
}

input[name="rating"]:checked + label {
    background: #ffb74d94;
    border-radius: 9px;
}

.btn-category:hover {
    background: #ffb34a80 !important;
    color: #fff;
}

input[name="category"]:checked + label {
    background: #ffb34a80 !important;
    color: #fff;
}


/* Shiny */
.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    transition: none;
}

.card:hover .img-wrapper::before {
    animation: shine 1s;
}

.card-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.card:hover .card-img {
    transform: scale(1.02);
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}