/* Custom styles to complement Bootstrap dark theme */
.card {
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
    background-color: rgba(255, 255, 255, 0.05);
}

#centralBankRate {
    font-family: monospace;
    font-size: 2rem;
    font-weight: bold;
}

#centralBankRate small {
    font-size: 0.7rem;
    opacity: 0.7;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn:focus {
    box-shadow: none;
}

/* Smooth transitions */
.alert, .card {
    transition: all 0.3s ease-in-out;
}

/* Input styling */
.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
}