#tcs-quiz-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.tcs-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tcs-popup-content h3 {
    margin-bottom: 10px;
}

.tcs-popup-content p {
    margin-bottom: 10px;
}

.tcs-popup-content a {
    color: #0073aa;
    text-decoration: underline;
}

.tcs-popup-content .button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

.tcs-popup-content .button:hover {
    background: #005177;
}