/* assets/css/quiz-critical.css - INLINE LOADED */
.trcq-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: blue;
    position: sticky;
    padding: 10px;
    top: 0;
    z-index: 10;
    gap: 15px;
}

.trcq-question-reading-container {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 60px);
    overflow: hidden;
}

.trcq-question-text {
    width: 40%;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.trcq-reading-text {
    width: 60%;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    border: 0px solid #ccc;
    display: block;
}

/* Above-the-fold content only */
.trcq-question-container.active {
    display: block;
}

.trcq-button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #0073aa;
    color: white;
    min-height: 44px;
    min-width: 44px;
}