<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#qe-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.qe-question-item {
    margin-bottom: 10px;
}

.qe-question-item input,
.qe-question-item textarea {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
}

.qe-buttons {
    text-align: right;
}

.qe-buttons button {
    margin-left: 10px;
}

.accordion {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #110736;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: #fff;
}

.accordion.active .accordion-content {
    display: block;
}

.accordion-icon {
    font-size: 20px;
    line-height: 1;
}
</pre></body></html>