/* BL Currency Switcher - Dark theme matching Boostinglab header */

.bl-currency-switcher {
    display: inline-flex;
    gap: 4px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(92, 252, 146, 0.2);
    border-radius: 8px;
    padding: 4px;
}

.bl-currency-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.bl-currency-btn:hover {
    color: #fff;
    background: rgba(92, 252, 146, 0.1);
}

.bl-currency-btn.active {
    background: #5cfc92;
    color: #0b0f19;
}

.bl-currency-btn.active:hover {
    background: #4de080;
    color: #0b0f19;
}

.bl-currency-symbol {
    font-weight: 600;
}

.bl-currency-code {
    font-size: 12px;
    opacity: 0.9;
}

/* Compact variant - show only symbols */
.bl-currency-switcher.compact .bl-currency-code {
    display: none;
}

.bl-currency-switcher.compact .bl-currency-btn {
    padding: 6px 10px;
}
