/* Donation form style */
.donation-card {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amount-btn input[type="radio"] {
    display: none;
}

.amount-btn label {
    cursor: pointer;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 5px;
    transition: all 0.2s ease;
}

.amount-btn input[type="radio"]:checked+label {
    border-color: #0d6efd;
    background: #0d6efd;
    color: white;
}

/* Fix currency select border radius */
.input-group>.form-select.currency-select {
    margin-right: 10px;
    border-radius: 0.375rem 0 0 0.375rem !important;
}

/* Fix custom amount input border radius */
.input-group>.form-control#customAmount {
    border-radius: 0 0.375rem 0.375rem 0 !important;
}