.donate-form__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.donate-form__buttons button {
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f7f7f7;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}

.donate-form__buttons button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.donate-form__custom {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.donate-form__custom input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 120px;
}

.donate-form__custom label {
    font-weight: 500;
    font-size: 1.25rem;
    padding: 5px;
}

.donate-form__custom button {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    background: #000;
    color: white;
    cursor: pointer;
}

.donate-form__custom button:hover {
    opacity: 0.9;
}