body {
    background-color: #f3f5f7;
}

.page-panel {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(33, 37, 41, 0.06);
    padding: 28px;
}

.mensagem-sucesso {
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
    border-radius: 6px;
    color: #0f5132;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
}

.opcoes-inicio {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 30px;
}

.card-opcao,
.dashboard-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #212529;
    display: block;
    padding: 20px;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.card-opcao:hover,
.dashboard-card:hover {
    border-color: #86b7fe;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.12);
    color: #212529;
    transform: translateY(-2px);
}

.dashboard-cards {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin: 25px 0;
}

.dashboard-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-card-titulo {
    color: #495057;
    font-weight: 700;
}

.dashboard-card strong {
    font-size: 32px;
    line-height: 1;
}

.painel-resumo {
    margin-top: 30px;
}

.painel-cabecalho {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.form-largura-media {
    max-width: 560px;
}

.table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.table {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .page-panel {
        padding: 20px;
    }
}
