.ll-tools-quiz-wrapper {
    width: 100%;
}

.ll-quiz-page-title {
    text-align: center;
    margin: 0 0 10px;
}

.ll-tools-quiz-iframe-wrapper {
    position: relative;
    width: 100%;
}

.ll-tools-quiz-iframe {
    position: relative;
    width: 100%;
    border: 0;
}

/* Spinner */
.ll-tools-iframe-loading {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: ll-tools-spin 2s linear infinite;
    z-index: 1;
}

@keyframes ll-tools-spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Center the quiz block within the theme's content area */
.ll-tools-quiz-wrapper,
.ll-tools-quiz-iframe-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure iframe stretches to container width */
.ll-tools-quiz-iframe {
    display: block;
    width: 100%;
}