/* Popup Styles */
#nocdyn-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 90%;
    width: 500px;
    display: none; /* Hidden by default */
}

#nocdyn-popup p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

#nocdyn-popup a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

#nocdyn-popup a:hover {
    text-decoration: underline;
}

#nocdyn-popup button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#nocdyn-popup button:hover {
    background: #0056b3;
}

#nocdyn-popup #join-btn {
    background-color: #09607A;
}

#nocdyn-popup #join-btn:hover {
    background-color: #09607A;
}

/* Overlay Styles */
#nocdyn-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none; /* Hidden by default */
}
