/* Dashboard Financeiro - Estilos Personalizados */

/* Fix para o layout principal */
.app-root {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-wrapper {
    flex: 1;
    display: flex;
    min-height: 0;
}

.app-main {
    flex: 1;
    min-width: 0;
    padding-left: 0;
}

/* Logo do sidebar - posicionamento correto */
.app-sidebar-logo {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.app-sidebar-logo img {
    max-height: 40px;
    width: auto;
    height: auto;
}

/* Sidebar responsivo */
.app-sidebar {
    width: 265px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Header fixo */
.app-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    position: sticky;
    top: 0;
}

/* Conteúdo principal */
.app-content {
    padding: 0;
    flex: 1;
}

.app-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Toolbar ajustado */
.app-toolbar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    min-height: auto;
}

/* Cards principais de saldo */
.financial-card {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.financial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Melhorias para cards de saldo */
.card.bg-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
}

.card.bg-success {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%) !important;
}

.card.bg-warning {
    background: linear-gradient(135deg, #92400e 0%, #f59e0b 100%) !important;
}

/* Ações rápidas */
.quick-action-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.quick-action-card:hover {
    background-color: #f8fafc !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Timeline de movimentações */
.timeline-item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.timeline-item:last-child {
    border-bottom: none;
}

/* Removido - duplicação de regras mobile */

/* Cards de estatísticas */
.stats-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stats-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Logo ajustada - removida duplicação */

/* Badges e indicadores */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Gráficos */
.chart-container {
    min-height: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
}

/* Progress bars */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    border-radius: 4px;
}

/* Melhorias visuais para valores monetários */
.currency-value {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Animações suaves */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Menu lateral */
.app-sidebar .menu-item .menu-link {
    border-radius: 8px;
    margin: 2px 0;
    padding: 0.75rem 1rem;
}

.app-sidebar .menu-item.here .menu-link {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.app-sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Menu do usuário */
.app-navbar {
    padding: 0 1rem;
}

.app-navbar-item {
    margin: 0 0.25rem;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .app-sidebar {
        position: fixed;
        left: -265px;
        top: 0;
        height: 100vh;
        z-index: 1100;
        transition: left 0.3s ease;
    }
    
    .app-sidebar.app-sidebar-open {
        left: 0;
    }
    
    .app-main {
        margin-left: 0;
    }
}

/* Melhorias para mobile */
@media (max-width: 768px) {
    .currency-value {
        font-size: 1.8rem;
    }
    
    .quick-action-card {
        margin-bottom: 1rem;
    }
    
    .col-xl-4, .col-xl-8 {
        margin-bottom: 2rem;
    }
}

/* Fix para conteúdo que não aparece */
.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

/* Garantir que o conteúdo principal seja visível */
#kt_app_content_container {
    padding: 1.5rem;
    width: 100%;
    max-width: none;
}

/* Fix específico para o problema atual */
.app-content .container-xxl {
    max-width: 100%;
    padding: 0 1.5rem;
}

.row {
    margin: 0 -0.75rem;
}

.row > * {
    padding: 0 0.75rem;
}

/* Sidebar toggle button */
.app-sidebar-toggle {
    display: none;
}

@media (min-width: 992px) {
    .app-sidebar-toggle {
        display: flex;
    }
}

/* Financial Dashboard Styles */

/* User Info Section */
.user-info-section {
    margin-bottom: 2rem;
}

.user-welcome {
    background: linear-gradient(135deg, #00D4AA 0%, #17A589 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.2);
}

.welcome-content {
    flex: 1;
}

.welcome-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.user-level {
    margin-bottom: 0.75rem;
}

.level-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.welcome-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.welcome-avatar {
    margin-left: 2rem;
}

.avatar-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.level-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.level-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.level-image {
    width: 40px;
    height: 40px;
    /* Mantém cores originais do SVG */
    object-fit: contain;
    transition: transform 0.2s ease;
}

.level-image:hover {
    transform: scale(1.05);
}

.level-description {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 400;
}

/* Financial Overview Cards */
.financial-overview {
    margin-bottom: 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.balance-card .card-icon {
    background: linear-gradient(135deg, #00D4AA 0%, #17A589 100%);
    color: #ffffff;
}

.vault-card .card-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
}

.loan-card .card-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #ffffff;
}

.card-content .label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-content .amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.amount .currency {
    font-size: 1rem;
    color: #6b7280;
    margin-right: 0.25rem;
}

.amount .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
}

.trend {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.trend.positive {
    color: #10b981;
}

.trend.negative {
    color: #ef4444;
}

.vault-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.due-date {
    font-size: 0.875rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-info {
    margin-top: 0.75rem;
}

.progress-text {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #00D4AA 0%, #17A589 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Quick Actions Section */
.quick-actions-section {
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-action-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-action-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
}

.action-icon.loan {
    background: linear-gradient(135deg, #00D4AA 0%, #17A589 100%);
}

.action-icon.vault {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.action-icon.transfer {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.action-icon.statement {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.action-content {
    flex: 1;
}

.action-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.action-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Mobile Layout Melhorado - Foto à esquerda, informações à direita */
@media (max-width: 768px) {
    /* Seções compactas */
    .user-info-section {
        margin-bottom: 1rem;
    }
    
    .financial-overview {
        margin-bottom: 1rem;
    }
    
    .quick-actions-section {
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin: 0;
        font-weight: 700;
    }
    
    .user-welcome {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
        gap: 0.75rem;
        text-align: left;
    }
    
    .welcome-content {
        flex: 1;
        order: 2;
        padding-left: 0.5rem;
    }
    
    .welcome-avatar {
        margin-left: 0;
        margin-top: 0;
        order: 1;
        flex-shrink: 0;
    }
    
    .avatar-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .avatar-large {
        width: 75px;
        height: 75px;
        border: 3px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .avatar-large:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    
    /* Símbolo do nível em destaque - posicionado sobre o avatar */
    .level-icon {
        position: absolute;
        bottom: -10px;
        right: -10px;
        width: 46px;
        height: 46px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 3px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        z-index: 3;
        transition: all 0.3s ease;
    }
    
    .level-icon:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 1);
    }
    
    .level-image {
        width: 32px;
        height: 32px;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
        transition: all 0.3s ease;
    }
    
    .level-image:hover {
        transform: scale(1.1);
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
    }
    
    /* Títulos e informações mais organizados */
    .welcome-title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        font-weight: 800;
    }
    
    .user-level {
        margin-bottom: 0.6rem;
    }
    
    .level-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
        background: rgba(255, 255, 255, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(20px);
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .level-badge:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .level-description {
        font-size: 0.7rem;
        margin-top: 0.2rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    .welcome-subtitle {
        font-size: 0.85rem;
        opacity: 0.9;
        line-height: 1.4;
        margin: 0;
        font-weight: 500;
    }
    
    /* Cards de visão geral compactos para mobile */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .overview-card {
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid #f1f5f9;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }
    
    .overview-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
    }
    
    .card-icon:hover {
        transform: translateY(-1px) scale(1.03);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .card-content .label {
        font-size: 0.75rem;
        color: #6b7280;
        margin-bottom: 0.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .card-content .amount {
        display: flex;
        align-items: baseline;
        margin-bottom: 0.6rem;
        flex-wrap: wrap;
    }
    
    .amount .currency {
        font-size: 0.9rem;
        color: #6b7280;
        margin-right: 0.2rem;
        font-weight: 600;
    }
    
    .amount .value {
        font-size: 1.6rem;
        font-weight: 800;
        color: #111827;
        line-height: 1;
    }
    
    .trend {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.3rem 0.5rem;
        border-radius: 8px;
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
        width: fit-content;
    }
    
    .trend i {
        font-size: 0.8rem;
    }
    
    .vault-name {
        font-weight: 700;
        color: #111827;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .due-date {
        font-size: 0.8rem;
        color: #f59e0b;
        font-weight: 700;
        margin-bottom: 0.5rem;
        padding: 0.25rem 0.5rem;
        background: rgba(245, 158, 11, 0.1);
        border-radius: 6px;
        width: fit-content;
    }
    
    .progress-info {
        margin-top: 0.6rem;
    }
    
    .progress-text {
        font-size: 0.75rem;
        color: #6b7280;
        display: block;
        margin-bottom: 0.4rem;
        font-weight: 600;
    }
    
    .progress-bar {
        width: 100%;
        height: 6px;
        background: #f1f5f9;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
    }
    
    .progress-fill {
        height: 100%;
        background: linear-gradient(135deg, #00D4AA 0%, #17A589 100%);
        border-radius: 6px;
        transition: width 0.5s ease;
        box-shadow: 0 1px 3px rgba(0, 212, 170, 0.3);
    }
    
    /* Ações rápidas compactas para mobile */
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .quick-action-item {
        padding: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        background: #ffffff;
        transition: all 0.3s ease;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    }
    
    .quick-action-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }
    
    .action-icon {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
        align-self: center;
    }
    
    .action-icon:hover {
        transform: translateY(-1px) scale(1.03);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .action-content {
        flex: 1;
    }
    
    .action-title {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
        font-weight: 700;
        color: #111827;
        line-height: 1.2;
    }
    
    .action-subtitle {
        font-size: 0.7rem;
        color: #6b7280;
        font-weight: 500;
        line-height: 1.2;
    }
}

/* Layout para telas muito pequenas */
@media (max-width: 480px) {
    .user-welcome {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .welcome-content {
        padding-left: 0.25rem;
    }
    
    .avatar-large {
        width: 65px;
        height: 65px;
    }
    
    .level-icon {
        width: 40px;
        height: 40px;
        bottom: -8px;
        right: -8px;
        border: 2px solid rgba(255, 255, 255, 0.7);
    }
    
    .level-image {
        width: 28px;
        height: 28px;
    }
    
    .welcome-title {
        font-size: 1.25rem;
    }
    
    .level-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .welcome-subtitle {
        font-size: 0.8rem;
    }
    
    /* Overview cards otimizados para telas pequenas */
    .overview-card {
        padding: 1rem;
        border-radius: 16px;
        margin-bottom: 0.75rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.3rem;
    }
    
    .card-content .label {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .amount .currency {
        font-size: 1rem;
    }
    
    .amount .value {
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .trend {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        border-radius: 10px;
    }
    
    .vault-name {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .due-date {
        font-size: 0.9rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .progress-info {
        margin-top: 0.8rem;
    }
    
    .progress-text {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .progress-bar {
        height: 6px;
        border-radius: 6px;
    }
    
    /* Quick actions em layout vertical para telas pequenas */
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .quick-action-item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        border-radius: 16px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    }
    
    .quick-action-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .action-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
        flex-shrink: 0;
        border-radius: 12px;
        align-self: flex-start;
    }
    
    .action-icon:hover {
        transform: translateY(-1px) scale(1.03);
    }
    
    .action-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .action-title {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
        font-weight: 700;
    }
    
    .action-subtitle {
        font-size: 0.75rem;
        color: #6b7280;
        font-weight: 500;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .financial-overview {
        margin-bottom: 1.5rem;
    }
    
    .quick-actions-section {
        margin-bottom: 1.5rem;
    }
} 