/* Styles for the "Thank You" popup on page 11779 */
#thankYouOverlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 9999;
}

/* This targets the inner div created by the JS */
#thankYouOverlay > div {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#thankYouOverlay h2 {
    color: #46536a;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

#thankYouOverlay p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

#thankYouOverlay button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #46536a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#thankYouOverlay button:hover {
    background-color: #323e52; /* A darker shade for hover */
}