/* Style for editable payment amount input */
.payment-amount-input {
    width: 100px;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    text-align: right;
    margin-right: 10px;
    background: #fff;
    transition: all 0.2s;
}

.payment-amount-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

/* Ensure it looks nice inside the payment item */
.payment-item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .payment-amount-input {
        width: 80px;
        padding: 4px 6px;
        font-size: 0.9rem;
        margin-right: 5px;
    }

    .payment-item-right {
        gap: 8px !important;
        flex-shrink: 0;
    }
}