
/* Copy the entire content from styles.css */
.donation-container {
    max-width: 400px;
    width: 100%;
    margin: 20px auto;
    padding: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.donation-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.donation-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.amount-section {
    margin-bottom: 25px;
}

.amount-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 12px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: #22c55e;
    background: #f0fdf4;
}

.amount-btn.selected {
    border-color: #22c55e;
    background: #22c55e;
    color: white;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #22c55e;
}

.phone-input {
    display: flex;
    align-items: center;
}

.country-code {
    padding: 12px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.phone-field {
    border-radius: 0 6px 6px 0;
    flex: 1;
    min-width: 0;
}

.payment-methods, .donation-types {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: #22c55e;
    background: #f0fdf4;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.donate-btn {
    width: 100%;
    padding: 15px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.donate-btn:hover {
    background: #16a34a;
}

.donate-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.paybill-info {
    margin-top: 20px;
    padding: 20px;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 6px;
}

.paybill-info h3 {
    margin-top: 0;
    color: #166534;
}

.paybill-info p {
    margin: 10px 0;
    color: #333;
}

@media (max-width: 480px) {
    .donation-container {
        margin: 10px auto;
        padding: 5px;
    }
    
    .donation-form {
        padding: 15px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .amount-btn {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    .form-input {
        padding: 10px;
        font-size: 16px;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 5px;
    }
    
    .country-code {
        border-radius: 6px;
        border-right: 2px solid #e0e0e0;
        text-align: center;
    }
    
    .phone-field {
        border-radius: 6px;
    }
}

@media (max-width: 320px) {
    .donation-form {
        padding: 10px;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
    
    .amount-btn {
        padding: 8px 6px;
        font-size: 13px;
    }
}
