/**
 * Currency Converter Widget Styles
 */

.currency-converter-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 1rem 0;
}

.currency-converter-header {
    margin-bottom: 1rem;
}

.currency-converter-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal, #1f2937);
    margin: 0;
    display: flex;
    align-items: center;
}

.currency-converter-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.currency-converter-input-group {
    display: flex;
    gap: 0.5rem;
}

.currency-converter-input-group .form-control {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    font-size: 1rem;
}

.currency-converter-input-group .currency-select {
    width: 100px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.currency-converter-arrow {
    text-align: center;
    color: var(--primary-blue, #4FA3FF);
    font-size: 1.2rem;
}

.currency-output {
    background: #f9fafb;
    font-weight: 600;
    color: var(--charcoal, #1f2937);
}

.currency-converter-note {
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 576px) {
    .currency-converter-input-group {
        flex-direction: column;
    }
    
    .currency-converter-input-group .currency-select {
        width: 100%;
    }
}

