/* ---------- */
/* DESKTOP LAYOUT */
/* ---------- */

.kms-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
    margin-top:25px;
    padding:10px;
    max-width:1400px;
    margin-left:auto;
    margin-right:auto;
}

.kms-day{
    background:#fff;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    padding:15px;
}

.kms-day h3{
    text-align:center;
    margin-bottom:12px;
    font-size:18px;
}

.kms-slot{
    width:100%;
    border:none;
    border-radius:8px;
    padding:12px;
    margin:6px 0;
    font-size:14px;
    cursor:pointer;
    transition:all 0.2s;
}

.kms-slot:hover{
    transform:scale(1.03);
}

.kms-free{background:#e8f7e8;}
.kms-half{background:#fff4d6;}
.kms-full{background:#f6d6d6; cursor:not-allowed;}

.kms-names{
    font-size:12px;
    margin-left:8px;
    color:#444;
}

/* ---------- */
/* MOBILE SCROLL */
/* ---------- */

@media(max-width:900px){
    .kms-container{
        grid-auto-flow:column;
        grid-auto-columns:80%;
        overflow-x:auto;
        grid-template-columns:none;
        scroll-snap-type:x mandatory;
        padding-bottom:10px;
    }

    .kms-day{
        scroll-snap-align:start;
    }

    .kms-container::-webkit-scrollbar{
        height:6px;
    }

    .kms-container::-webkit-scrollbar-thumb{
        background:#d1d5db;
        border-radius:10px;
    }
}

/* ---------- */
/* POPUP STYLING */
/* ---------- */

#kms-popup{
    position: fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:white;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    padding:20px;
    z-index:999999;
    width:90%;
    max-width:350px;
    display:none;
}

#kms-popup input{
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:16px;
}

#kms-popup button{
    width:48%;
    padding:10px;
    margin-right:4%;
    border:none;
    border-radius:6px;
    background:#0073aa;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

#kms-popup button:last-child{
    margin-right:0;
    background:#555;
}