/* Estilos gerais */
.nav-financeiro {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
}

.nav-financeiro .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.nav-financeiro .nav-link:hover {
    color: #198754;
}

.nav-financeiro .nav-link.active {
    background-color: #198754;
    color: white;
}

.nav-financeiro .nav-link i {
    margin-right: 0.5rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 1rem;
}

.card-body {
    padding: 1.25rem;
}

/* Tabelas */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.table td {
    vertical-align: middle;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

/* Botões */
.btn-forest {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.btn-forest:hover {
    background-color: #157347;
    border-color: #157347;
    color: white;
}

.btn-outline-forest {
    color: #198754;
    border-color: #198754;
}

.btn-outline-forest:hover {
    background-color: #198754;
    color: white;
}

/* Inputs */
.form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Modais */
.modal-header {
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #dee2e6;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #198754;
}

/* Gráficos */
.chart-container {
    position: relative;
    margin: auto;
    height: 300px;
}

/* Dropzone */
.dropzone-container {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dropzone-container:hover {
    border-color: #198754;
}

.dropzone-container i {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Toast */
.toast-container {
    z-index: 1060;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-financeiro .nav-link {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .nav-financeiro .nav-link i {
        margin-right: 0.25rem;
    }

    .card-header {
        padding: 0.75rem;
    }

    .card-body {
        padding: 1rem;
    }

    .table {
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Animações */
.fade-enter {
    opacity: 0;
}

.fade-enter-active {
    opacity: 1;
    transition: opacity 300ms ease-in;
}

.fade-exit {
    opacity: 1;
}

.fade-exit-active {
    opacity: 0;
    transition: opacity 300ms ease-in;
}

/* Cores de Status */
.status-pendente {
    color: #ffc107;
}

.status-aprovado {
    color: #198754;
}

.status-rejeitado {
    color: #dc3545;
}

.status-realizado {
    color: #0d6efd;
}

/* Ícones */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

/* Filtros */
.filtros-container {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Cards de Resumo */
.resumo-card {
    transition: transform 0.3s ease;
}

.resumo-card:hover {
    transform: translateY(-5px);
}

/* Tabela Responsiva */
.table-responsive {
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Tooltips Personalizados */
.tooltip-inner {
    background-color: #198754;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #198754;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #198754;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #157347;
} 