/* Donation page specific styles */
.donation-container {
    max-width: 900px;
    margin: 2rem auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.donation-header {
    text-align: center;
    padding: 2rem;
    background-color: #f5f5f5;
    position: relative;
}

.donation-header h1 {
    color: #3f51b5;
    margin-bottom: 1rem;
}

.header-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.login-banner {
    padding: 0.75rem;
    background-color: #e8f5e9;
    text-align: center;
    border-bottom: 1px solid #c8e6c9;
    font-weight: 500;
    color: #2e7d32;
}

.donation-form {
    padding: 2rem;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-option {
    flex: 1;
    min-width: 80px;
    padding: 0.75rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.amount-option:hover {
    border-color: #3f51b5;
    background-color: #f5f5f5;
}

.amount-option.selected {
    border-color: #3f51b5;
    background-color: #e8eaf6;
    color: #3f51b5;
}

.donation-footer {
    padding: 1.5rem;
    background-color: #f5f5f5;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.donation-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.modal-content {
    max-width: 500px;
}

#otherNotesContainer {
    display: none;
    margin-top: 1rem;
}

/* Custom amount input styling */
.custom-amount {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

/* Site header styling */
.site-header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.header-title h1 {
    margin: 0;
    color: #3f51b5;
    font-size: 1.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.auth-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: #3f51b5;
    transition: all 0.2s ease;
    text-decoration: none;
}

.auth-link:hover {
    background-color: #e8eaf6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amount-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-header {
        padding: 1.5rem 1rem;
    }
    
    .donation-form {
        padding: 1.5rem 1rem;
    }
}