/* Style for Survey */
.survey-container {
    max-width: 100%;
    overflow-x: hidden;
}

.survey-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9e9e9;
    display: block;
    /* Ensure the container fits the iframe */
}

.survey-wrapper iframe {
    width: 100%;
    display: block;
    border: none;
    height: 1850px;
    /* Ensure the container fits the iframe */
}

@media (max-width: 992px) {
    .survey-wrapper iframe {
        height: 2000px;
    }
}

@media (max-width: 768px) {
    .survey-wrapper iframe {
        height: 2200px;
    }
}

@media (max-width: 576px) {
    .survey-wrapper {
        padding: 4px;
        margin: 0;
        border-radius: 4px;
    }

    .survey-wrapper iframe {
        height: 2600px;
    }
}