body.centered-page {
    margin: 0;
    min-height: 100vh;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

body.centered-page-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.centered-panel,
.status-container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: min(100%, 520px);
}

.status-container {
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.redirect-title,
.status-title {
    color: #003366;
    margin-bottom: 10px;
}

.centered-panel p {
    color: #666;
}

.page-success {
    color: #28a745;
}

.page-error {
    color: #dc3545;
}

.details {
    margin-top: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.details dt {
    font-weight: bold;
    margin-top: 10px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #003366;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

.status-indicator {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.checkmark {
    color: white;
    font-size: 60px;
    font-weight: bold;
}

.status-heading {
    color: #1f2937;
    margin: 0 0 10px;
    font-size: 32px;
}

.status-text {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px;
}

.timestamp,
.status-note {
    color: #6b7280;
}

.timestamp {
    font-size: 14px;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}
