.donation-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.amount-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.other-amount-row {
    display: flex;
    gap: 15px;
}

.donation-box {
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.donation-box:hover {
    border-color: #f9b101;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.2);
}

.donation-box input[type="radio"] {
    display: inline-block;
    margin-right: 8px;
}

.donation-box input[type="radio"]:checked + .box-content {
    background-color: #007cba;
    color: white;
}

.box-content {
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-amount {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.other-amount-input {
    margin-top: 8px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
}

.submit-btn {
    background-color: #007cba;
    color: white;
    padding: 25px 25px;
    width: 200px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.other-amount-row {
    display: flex;
    justify-content: center;
}

.other-amount-row .donation-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.other-amount-row .other-amount-input {
    width: 150px;
    margin-top: 8px;
}

.donor-info-section {
    margin-top: 30px;
    display: none;
}

.donor-info-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.submit-info-btn {
    background-color: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.error-message {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}

.success-message {
    color: green;
    margin-top: 10px;
    font-weight: bold;
}