/* Custom styles for Ponto Escolar */

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f0f2f5;
}

.login-page {
    background: linear-gradient(135deg, #1a56db 0%, #0e3a9a 100%);
    min-height: 100vh;
}

.login-card {
    border-radius: 16px;
    margin: 1rem;
}

.navbar {
    padding: 0.6rem 1rem;
}

.card {
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.btn {
    border-radius: 8px;
    font-size: 0.875rem;
}

.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.table th {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    padding: 0.75rem 1rem;
}

.table td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(26, 86, 219, 0.04);
}

.form-control, .form-select {
    border-radius: 8px;
    border-color: #d1d5db;
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
}

.form-control:focus, .form-select:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.alert {
    border-radius: 10px;
    border: none;
}

.list-group-item {
    border-color: #e5e7eb;
}

.list-group-item:hover {
    background-color: #f3f4f6;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Status badge colors */
.status-pendente { background-color: #fef3c7; color: #92400e; }
.status-aprovada { background-color: #d1fae5; color: #065f46; }
.status-rejeitada { background-color: #fee2e2; color: #991b1b; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1a1; }
