﻿/* ===============================
   BRAND SIDEBAR
   =============================== */
:root {
    --tblr-nav-link-color: rgba(255,255,255,1) !important;
    --tblr-body-font-size: .95rem !important;
}

.nav-link:focus, .nav-link:hover {
    color: #fff !important;
}
.navbar-brand img {
    max-height: 4rem !important;
    width: auto;
}

.navbar-brand .nav-link {
    color: rgba(255,255,255,1) !important;
}

    .navbar-brand .nav-link:hover {
        color: rgba(255,255,255,1) !important;
    }

.bg-sidebar {
    /*background-color: #085F9F;*/
    background-color: #1a2332;
}

.card-header {
    background-color: #fff;
    border-bottom: 2px solid #5170FF;
    color: #085F9F;
}

table.dataTable tbody tr:hover {
    background-color: #f6f9fc; /* gris muy suave estilo Tabler */
}

table.dataTable thead th {
    border-bottom: 2px solid #dee2e6;
}

.card-table {
    margin-bottom: 0;
}

/* Botones más compactos */
.btn-list .btn {
    padding: 0.25rem 0.5rem;
}

/* Card hover suave */
.card-hover:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Inputs más grandes tipo SaaS moderno */
.form-control-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

/* Labels más destacados */
.form-label {
    color: #495057;
}

/* Botones separados */
.btn + .btn {
    margin-left: 0.5rem;
}

.min-vh-80 {
    min-height: 75vh !important;
}
.estilista-item.active {
    border-left: 4px solid #206bc4;
    background-color: rgba(32, 107, 196, 0.05);
}

.card-status-top {
    height: 10px !important;
}

.agenda-horas {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 8px;
}

.slot-hora {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    background: #fff;
    transition: all .2s;
}

    .slot-hora:hover {
        background: #f1f5f9;
    }

    .slot-hora.selected {
        background: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

.agenda-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.agenda-hora {
    width: 90px;
    padding: 15px;
    font-weight: 600;
    color: #444;
    border-right: 1px solid #eee;
    background: #fafafa;
}

.agenda-contenido {
    flex: 1;
    padding: 10px;
}

.cita-card {
    background: #f8fbff;
    border: 1px solid #dbe8ff;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 10px;
}

    .cita-card:last-child {
        margin-bottom: 0;
    }
/* Contenedor del autocomplete */
.ui-autocomplete {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 6px 0;
    font-size: 14px;
    max-height: 260px;
    overflow-y: auto;
}

/* cada item */
.ui-menu-item {
    list-style: none;
}

/* texto del item */
.ui-menu-item-wrapper {
    padding: 10px 14px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    transition: all .15s ease;
}

/* separador entre items */
.ui-menu-item + .ui-menu-item .ui-menu-item-wrapper {
    border-top: 1px solid #f1f3f5;
}

/* hover */
.ui-menu-item-wrapper:hover {
    background: #f5f8ff;
    color: #0d6efd;
}

/* item seleccionado con teclado */
.ui-state-active {
    background: #eef4ff !important;
    border: none !important;
    color: #0d6efd !important;
}

/* scrollbar moderna */
.ui-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.ui-autocomplete::-webkit-scrollbar-thumb {
    background: #dcdcdc;
    border-radius: 6px;
}

    .ui-autocomplete::-webkit-scrollbar-thumb:hover {
        background: #c5c5c5;
    }