/* ATC Donate Form Styles */
.atc-donate-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.atc-donate-form {
    background: #ffffff;
    border: 1px solid #e7eef9;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}

.atc-donate-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002740;
    margin: 0 0 24px;
    text-align: center;
}

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

.atc-donate-form-group label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-size: 14px;
}

.atc-donate-form-group .required {
    color: #dc2626;
}

.atc-donate-form-group input[type="text"],
.atc-donate-form-group input[type="email"],
.atc-donate-form-group input[type="tel"],
.atc-donate-form-group input[type="number"],
.atc-donate-form-group select,
.atc-donate-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e7eef9;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.atc-donate-form-group input:focus,
.atc-donate-form-group select:focus,
.atc-donate-form-group textarea:focus {
    outline: none;
    border-color: #002740;
    box-shadow: 0 0 0 3px rgba(0, 39, 64, 0.1);
}

.atc-donate-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.atc-donate-submit-btn {
    width: 100%;
    background: #002740;
    color: #ffffff;
    border: 2px solid #002740;
    padding: 14px 28px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.atc-donate-submit-btn:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #002740;
}

.atc-donate-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.atc-donate-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.atc-donate-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.atc-donate-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.atc-donate-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Success/Error messages on page */
.atc-donate-page-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.atc-donate-page-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.atc-donate-page-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

/* Thank You Page Styles */
.atc-thankyou-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.atc-thankyou-container {
    background: #ffffff;
    border: 1px solid #e7eef9;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}

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

.atc-thankyou-icon {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: #065f46;
    font-weight: bold;
}

.atc-thankyou-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002740;
    margin: 0 0 10px;
}

.atc-thankyou-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.atc-thankyou-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
}

.atc-thankyou-details h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #002740;
    margin: 0 0 20px;
}

.atc-donation-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.atc-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e7eef9;
}

.atc-info-row:last-child {
    border-bottom: none;
}

.atc-info-label {
    font-weight: 600;
    color: #000;
}

.atc-info-value {
    color: #002740;
    text-align: right;
}

.atc-info-value code {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.atc-info-value .atc-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #002740;
}

.atc-thankyou-message {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 39, 64, 0.05);
    border-radius: 8px;
    line-height: 1.8;
}

.atc-thankyou-message p {
    margin: 10px 0;
    color: #000;
}

.atc-thankyou-actions {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.atc-thankyou-actions .atc-button {
    display: inline-block;
    background: #002740;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.atc-thankyou-actions .atc-button:hover {
    background: #fbbf24;
    color: #002740;
}

.atc-thankyou-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e7eef9;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.atc-thankyou-footer a {
    color: #002740;
    text-decoration: none;
}

.atc-thankyou-footer a:hover {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
    .atc-thankyou-container {
        padding: 24px;
    }
    
    .atc-thankyou-title {
        font-size: 1.5rem;
    }
    
    .atc-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .atc-info-value {
        text-align: left;
    }
}
