/* styles/popup_styles.css */
.questionnaire-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.questionnaire-popup-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.questionnaire-popup-content h3 {
    margin-top: 0;
    color: #444;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.questionnaire-list {
    list-style-type: none;
    padding-left: 10px;
}

.questionnaire-list li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.questionnaire-list a {
    color: #0066cc;
    text-decoration: none;
}

.questionnaire-list a:hover {
    text-decoration: underline;
}

.questionnaire-popup-button-container {
    margin-top: 20px;
    text-align: center;
}

.questionnaire-popup-close-button {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.questionnaire-popup-close-button:hover {
    background: #e9ecef;
}