body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

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

.card {
    border-radius: 12px;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: #86b7fe;
}

.input-group-text {
    background-color: #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
}

.table th {
    font-weight: 600;
    color: #495057;
}

.text-positive {
    color: #198754;
    font-weight: 600;
}

.text-negative {
    color: #dc3545;
    font-weight: 600;
}

.text-neutral {
    color: #6c757d;
    font-weight: 600;
}
