/* ========================================
   DASHBOARD-CUSTOM.CSS
   Estilos para os cards e elementos da dashboard.
======================================== */

/* 1. Grid de Cards
======================================== */
.dashboard-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px; /* Espaçamento entre os cards */
}

/* 2. Estilo Base do Card de Estatística
======================================== */
.dashboard-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.card-content .card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #8c98a9;
    margin-bottom: 8px;
}

.card-content .card-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.card-icon {
    font-size: 24px;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. Variações de Cores dos Cards
======================================== */
.card-blue .card-icon { background-color: #8F1A18; }
.card-green .card-icon { background-color: #C8A47A; }
.card-purple .card-icon { background-color: #5B1F24; }
.card-orange .card-icon { background-color: #111111; }


/* 4. Card de Lista (Próximos Agendamentos)
======================================== */
.dashboard-list-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 24px;
}

.dashboard-list-card .list-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.appointments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.appointments-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid #f5f5f5;
}

.appointments-list li:last-child {
    border-bottom: none;
}

.appointment-time {
    font-weight: 600;
    color: var(--text-color);
    flex-basis: 15%;
}

.appointment-client {
    color: #555;
    flex-basis: 50%;
}

.appointment-procedure {
    color: #888;
    font-size: 0.9rem;
    flex-basis: 35%;
    text-align: right;
}








/*==========================================
    CABEÇALHO DA SIDEBAR
==========================================*/

.sidebar-header{

    padding:25px 20px 18px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.sidebar-logo-img{

    width:120px;

    height:auto;

    display:block;

    object-fit:contain;

    margin-bottom:15px;

    filter:none;

    opacity:1;

}

.sidebar-logo-text{

    color:#fff;

    font-size:18px;

    font-weight:700;

    text-align:center;

}

.sidebar-divider{

    border:0;

    height:1px;

    background:rgba(255,255,255,.18);

    margin:0 20px 20px;

}
