/* Estilos generales */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

/* Estilos para tablas */
.table th {
    border-top: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #6c757d;
}

/* Estilos para botones */
.btn {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
}

/* Estilos para los montos */
.text-income {
    color: #28a745;
    font-weight: 600;
}

.text-expense {
    color: #dc3545;
    font-weight: 600;
}

/* Estilos para el dashboard */
.dashboard-card {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
}