/* ===========================
   Donation Status Page Styles
   =========================== */

.donation-status {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f9fafb;
    padding: 2rem;
}

.status-container {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: white;
}

.icon-circle.success {
    background-color: #16a34a; /* green */
}

.icon-circle.pending {
    background-color: #eab308; /* yellow */
}

.icon-circle.failed {
    background-color: #dc2626; /* red */
}

.status-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.status-message {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.status-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-actions a {
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Button Styles */
.btn-primary {
    background-color: #16a34a;
    color: white;
}

.btn-primary:hover {
    background-color: #15803d;
}

.btn-outline {
    border: 2px solid #16a34a;
    color: #16a34a;
}

.btn-outline:hover {
    background-color: #16a34a;
    color: white;
}

/* Responsive */
@media (max-width: 640px) {
    .status-container {
        padding: 2rem 1.25rem;
    }

    .status-title {
        font-size: 1.5rem;
    }
}
