/* ==========================
   SEND PAGE STYLES
   ========================== */

.send-amount-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.amount-label {
    font-size: 14px;
    font-weight: 500;
    color: #6B7088;
}

.amount-input-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #242938;
    border: 2px solid #2A2F3F;
    border-radius: 16px;
    transition: border-color 0.3s;
}

.amount-input-container:focus-within {
    border-color: #FF7F50;
}

.amount-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
    padding-right: 105px;
}

.amount-input::placeholder {
    color: #343A4D;
}

.amount-currency {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #2A2F3F;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    min-width: 85px;
    justify-content: center;
}

.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #6B7088;
    transition: color 0.2s;
}

.currency-toggle:hover {
    color: #FF7F50;
}

.currency-toggle svg {
    width: 18px;
    height: 18px;
}

.balance-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}

.balance-label {
    font-size: 14px;
    color: #6B7088;
}

.balance-label span {
    color: #9CA3B8;
    font-weight: 500;
}

.max-btn {
    padding: 6px 14px;
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.3);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #FF7F50;
    cursor: pointer;
    transition: all 0.2s;
}

.max-btn:hover {
    background: rgba(255, 127, 80, 0.15);
    border-color: rgba(255, 127, 80, 0.5);
}

.max-btn:active {
    transform: scale(0.95);
}

.amount-equivalent {
    font-size: 18px;
    font-weight: 600;
    color: #9CA3B8;
    text-align: center;
    padding: 8px 0;
}
