.currency-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    flex-wrap: wrap;
}

.currency-selector-label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.currency-selector-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.currency-selector-btn:hover {
    border-color: #4CAF50;
    color: #4CAF50;
    background: #f9f9f9;
}

.currency-selector-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.currency-selector-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
   
    
    .currency-selector-label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .currency-selector-btn {
        flex: 1 1 auto;
        min-width: 20px;
    }
}