#survey-report-page {
    margin: 20px 0;
}

#survey-report-page h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

#survey-report-page p {
    margin-bottom: 10px;
}

/* Full màn hình trên máy tính */
@media (min-width: 768px) {
    #survey-report-page .survey-iframe {
        width: 100%;
        height: 100vh; /* Chiều cao full màn hình */
        border: none;
        display: block;
    }
}

/* Điều chỉnh cho thiết bị di động */
@media (max-width: 767px) {
    #survey-report-page .survey-iframe {
        width: 100%;
        height: 600px; /* Chiều cao cố định trên di động */
        border: none;
        display: block;
    }
}