.donation-container {
    max-width:1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
}

.donation-header {
    text-align: center;
    margin-bottom: 30px;
}

.donation-title {
    color: #2E7D32;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.donation-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.donation-section {
    margin-bottom: 30px;
}

.section-title {
    color: #1565C0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.donation-content {
    margin-bottom: 20px;
}

.donation-note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #2E7D32;
}

.widget-error {
    display: flex;
    align-items: center;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 15px;
}

.widget-error-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #ff9800;
}

.widget-error-content h4 {
    color: #e65100;
    margin-bottom: 5px;
}

.refresh-btn {
    display: inline-block;
    background-color: #2E7D32;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: bold;
}

.refresh-btn:hover {
    background-color: #1B5E20;
}

@media (max-width: 600px) {
    .donation-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 20px;
    }
}