.container{
    width:min(100%, 620px);
    margin:0 auto;
    padding:24px;
}

.card{
    width:100%;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:8px;
    padding:22px;
    box-shadow:0 22px 60px rgba(0,0,0,0.42);
    backdrop-filter:blur(14px);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:46px;
    padding:12px 16px;
    border:none;
    border-radius:8px;
    background:var(--primary);
    color:#0b0b0b;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    text-decoration:none;
    transition:background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn:hover{
    background:var(--primary-strong);
    transform:translateY(-1px);
}

.btn:disabled,
.btn.loading{
    opacity:0.58;
    cursor:not-allowed;
    transform:none;
}

.btn.secondary{
    background:var(--surface-2);
    color:var(--text);
    border:1px solid var(--border);
}

.btn.secondary:hover{
    background:var(--surface-3);
    border-color:rgba(245,197,66,0.42);
}

.button-row{
    display:grid;
    grid-template-columns:0.82fr 1fr;
    gap:10px;
    margin-top:18px;
}

.choice-list{
    display:grid;
    gap:10px;
}

.service,
.horario{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:48px;
    padding:13px 14px;
    border:1px solid var(--border);
    border-radius:8px;
    background:var(--surface-2);
    color:var(--text);
    cursor:pointer;
    transition:background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.service:hover,
.horario:hover{
    border-color:rgba(245,197,66,0.42);
    transform:translateY(-1px);
}

.service.active,
.horario.active{
    background:var(--primary);
    border-color:var(--primary);
    color:#0b0b0b;
    font-weight:700;
}

.input{
    width:100%;
    min-height:46px;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid var(--border);
    background:rgba(255,255,255,0.04);
    color:var(--text);
    outline:none;
    font-size:15px;
    transition:border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.input::placeholder{
    color:#777;
}

.input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(245,197,66,0.16);
    background:rgba(255,255,255,0.06);
}

.empty-state{
    padding:16px;
    border:1px solid var(--border);
    border-radius:8px;
    background:var(--surface-2);
    color:var(--muted);
    line-height:1.5;
}

@media(max-width:560px){
    .container{
        padding:18px;
    }

    .card{
        padding:18px;
    }

    .button-row{
        grid-template-columns:1fr;
    }
}
