/* Custom Quiz Control Container */
.tqr-control-container {
    background: #ffffff;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.tqr-settings-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tqr-select-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 80px;
}

.tqr-select-group label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.tqr-select-group select {
    padding: 5px 8px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #f8fafc;
    font-size: 13px;
    color: #334155;
    outline: none;
}

/* Action Control Row */
.tqr-action-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tqr-main-btn, .tqr-sub-btn, .tqr-stop-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.tqr-main-btn {
    background: #fac94d;
    color: #1e293b;
}
.tqr-main-btn:hover {
    background: #e0b441;
}

.tqr-sub-btn {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}
.tqr-sub-btn:hover {
    background: #e2e8f0;
}

.tqr-stop-btn {
    background: #ef4444;
    color: #ffffff;
    margin-left: auto; /* Push stop button to the far right side */
}
.tqr-stop-btn:hover {
    background: #dc2626;
}