/* redirect.css - Styles for redirect page */
body {
    background: #222;
    color: #e3e3e3;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.redirect-container {
    background: rgba(40, 40, 40, 0.95);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    text-align: center;
}

.redirect-message {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.redirect-link {
    color: #e3e3e3;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.2s;
}
.redirect-link:hover {
    color: #ff9800;
}
