/* Redirect Popup Styles */
.redirect-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redirect-popup-container {
    background-color: white;
    padding: 4em 2em;
    border-radius: 4px;
    width: 825px;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2.redirect-popup-heading {
    color: #003D78 !important;
    font-size: 28px !important;
    text-transform: none !important;
}

.redirect-popup-countdown {
    color: #003D78 !important;
    font-size: 21px;
}

p {
    color: #003D78 !important;
    font-size: 16px;
}

.redirect-popup-logo img {
    margin: 0 auto 1em;
    width: 340px;
    max-width: 100%;
    display: block;
}

.redirect-popup-heading {
    font-weight: bold;
    margin-bottom: 1em;
}

.redirect-popup-description {
    margin-bottom: 1em;
}

.redirect-popup-countdown {
    margin: 1.5em 0;
    font-weight: bold;
}

.redirect-popup-countdown-link {
    color: #ff6600 !important;
    text-decoration: underline;
}

.redirect-popup-button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 0.75em 2em;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 1em;
    font-size: 16px;
}

.redirect-popup-button:hover {
    opacity: 0.9;
}

