/* Estilos específicos para a Página de Faturamento por Vendedor */

body {
    background-color: #f8fafc;
    padding-top: 0 !important; /* 🔹 Removido o espaço do topo */
    margin: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.badge {
    letter-spacing: 0.5px;    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.header-panel {
    background-color: #0d47a1;
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 25px;
}

.logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.vendedor-card {
    transition: transform 0.2s;
    border-top: 4px solid #0d47a1;
    position: relative;
    cursor: pointer;
}

.vendedor-card:hover {
    transform: translateY(-5px);
    background-color: #f8fafc;
}

.val-destaque {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0d47a1;
}

.lbl-small {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.config-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    margin-left: 5px;
}

/* Status de Usuário */
.status-1 { background-color: #d1fae5; color: #065f46; } /* Ativo */
.status-0 { background-color: #fee2e2; color: #991b1b; } /* Bloqueado */
.status--1 { background-color: #fef3c7; color: #92400e; } /* Pendente */

/* Modal de Detalhamento */
.modal-header {
    background-color: #0d47a1;
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.stat-item {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
}

.stat-value {
    font-weight: bold;
    color: #1e293b;
}

.commission-summary {
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}
