body {
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redirect-container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.redirect-content {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f2f5f7;
    border-top: 4px solid #009fe3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.redirect-note {
    font-style: italic;
    font-size: 0.8rem;
    color: #b5b5b5;
    margin-top: 1rem;
}

a.redirect-link:link {
    display: block;
    color: #b5b5b5;
    text-decoration: underline;
    font-weight: 500;
}

a.redirect-link:hover {
    color: #009fe3;
    text-decoration: underline;
}
