/* Estilos para el dropdown de saldo */
.balance-dropdown__wrapper {
    display: none;
}

.balance-dropdown {
    position: relative;
    background: #000000;
    border-radius: 11px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .balance-dropdown:hover {
        border-color: rgba(255, 255, 255, 0.2);
    }

.balance-dropdown__button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.balance-dropdown__amount {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.balance-dropdown__icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-left: 4px;
}

.balance-dropdown__wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin-top: 8px;
    min-width: 200px;
}

.balance-dropdown__list {
    background: #1E2024;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
}

.header-currency-item {
    padding: 8px 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

    .header-currency-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

/* Estilos para el botÃ³n de depositar */
.deposit-button {
    background: #00C853;
    border-radius: 11px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 12px;
}

    .deposit-button:hover {
        background: #00B84D;
        text-decoration: none;
    }

.deposit-button__icon {
    color: #fff;
    font-size: 16px !important;
    !i;
    !;
    border: 0.12rem solid white;
    border-radius: 3px;
}

.deposit-button__text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Ajustes adicionales */
.header-currency-item__code {
    color: #fff;
    font-size: 14px;
}

.header-currency-item__icon {
    color: #00C853;
    font-size: 16px;
}
