/* Estilos específicos para dashboard.php */

section.content header h2 {
    color: #800000;
    margin-bottom: 15px;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.dashboard-menu li {
    flex: 1;
}

.dashboard-menu .btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.dashboard-menu .btn-primary {
    background: #004080;
    color: #fff;
}

.dashboard-menu .btn-secondary {
    background: #666;
    color: #fff;
}

.dashboard-menu .btn-danger {
    background: #cc0000;
    color: #fff;
}

/* Estatísticas */
.stats-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    flex: 1;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
}

.stat-box h3 {
    margin-bottom: 10px;
    color: #004080;
}

/* Relatórios */
.report-list {
    list-style: none;
    padding: 0;
}

.report-list li {
    margin: 8px 0;
}

.report-list a {
    text-decoration: none;
    color: #004080;
    font-weight: bold;
}

.report-list a:hover {
    text-decoration: underline;
}

/* Configurações */
.config-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.config-form label {
    font-weight: bold;
}

.config-form select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

