/* Overlay */
#country-redirect-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 999; /* Make sure it's behind the modal but above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal */
#country-redirect-notice-content {
    background-color: white; /* Black background */
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1000; /* Ensure it's above the overlay */
    max-width: 500px;
    width: 95%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

/* Title */
.country-redirect-notice-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

/* Text */
.country-redirect-notice-text {
    font-size: 1.0em;
    text-align: center;
}

/* Actions */
#country-redirect-notice .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
}

/* Buttons */
#country-redirect-notice button {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    width: 100%;
}

#country-redirect-notice button:hover {
    background-color: #0056b3;
}

/* "No" Button */
#country-redirect-notice button#no-redirect {
    background-color: white;
    color: #38383b;
    border: 1px solid #38383b;
}

/* "No" Button Hover */
#country-redirect-notice button#no-redirect:hover {
    background-color: #d2caca;
}

.country-redirect-notice-icon {
    max-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
