
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f9fafb;
            line-height: 1.5;
        }

        .loading-screen {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9fafb;
        }

        .loading-content {
            text-align: center;
        }

        .spinner {
            width: 64px;
            height: 64px;
            border: 4px solid #d1d5db;
            border-top: 4px solid #111827;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 32px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .loading-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .loading-subtitle {
            color: #6b7280;
        }

        .start-screen {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9fafb;
        }

        .start-content {
            text-align: center;
        }

        .start-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 24px;
        }

        .start-heading {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
            display: inline-flex;
        }

        .brand-icon--start {
            width: 128px;
            height: 128px;
        }

        .brand-icon--tiny {
            width: 28px;
            height: 28px;
        }

        .brand-icon--part {
            width: 32px;
            height: 32px;
        }

        .start-subtitle {
            color: #6b7280;
            margin-bottom: 24px;
        }

        .start-button {
            padding: 12px 32px;
            background-color: #2563eb;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .start-button:hover {
            background-color: #1d4ed8;
        }

        .test-interface {
            min-height: 100vh;
            background-color: white;
            display: flex;
            flex-direction: column;
            padding-bottom: 80px;
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 200;
            background-color: white;
            border-bottom: 1px solid #e5e7eb;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
        }

        .ielts-logo {
            color: #d4002a;
            font-weight: 900;
            font-size: 1.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-family: 'Impact', 'Arial Black', sans-serif;
            display: inline-flex;
            align-items: center;
        }

        .ielts-logo::after {
            content: '®';
            font-size: 0.65em;
            margin-left: 0.35rem;
            vertical-align: super;
        }

        .test-id {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .support-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2563eb;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .support-link:hover {
            color: #0844eb;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .icon {
            width: 20px;
            height: 20px;
            color: #6b7280;
        }

        .main-content {
            flex: 1;
            padding: 16px 24px;
            max-width: none;
            margin: 0;
            width: 100%;
            padding-left: 32px;
        }

        .part-header {
            background-color: #f3f4f6;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 24px;
        }

        .part-title-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .part-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .part-instructions {
            color: #374151;
        }

        .questions-section {
            margin-bottom: 24px;
        }

        .questions-title {
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .questions-description {
            color: #374151;
            margin-bottom: 16px;
        }

        .scenario-title {
            font-weight: 500;
            color: #111827;
            margin-bottom: 24px;
        }

        .question-group {
            margin-bottom: 24px;
        }

        .sequence-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .sequence-divider {
            text-align: center;
            font-size: 1.3rem;
            color: #94a3b8;
        }

        .sequence-note {
            text-align: center;
            font-size: 0.95rem;
            color: #475569;
            font-style: italic;
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9rem;
            color: #1f2937;
        }

        .time-table {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .time-row {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            border: 1px solid #e5e7eb;
            padding: 10px;
            border-radius: 8px;
            background: #f8fafc;
        }

        .time-label {
            font-weight: 600;
            min-width: 160px;
            color: #111827;
        }

        .question-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .question-item.column {
            flex-direction: column;
            align-items: flex-start;
        }

        .job-notes .question-line {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            margin-bottom: 8px;
        }

        .question-line span {
            white-space: nowrap;
        }

        .flow-chart {
            margin-top: 12px;
            padding: 12px;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            background: #f8fafc;
        }

        .flow-line {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }

        .question-input {
            width: 120px;
            height: 32px;
            text-align: center;
            border: 2px solid #3b82f6;
            border-radius: 4px;
            font-size: 0.875rem;
            outline: none;
            padding: 4px;
        }

        .question-input:focus {
            border-color: #1d4ed8;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .question-input.correct {
            border-color: #10b981;
            background-color: #d1fae5;
        }

        .question-input.incorrect {
            border-color: #ef4444;
            background-color: #fee2e2;
        }

        .question-input.partial {
            border-color: #f59e0b;
            background-color: #fef3c7;
        }

        .multiple-choice {
            margin-left: 20px;
        }

        .multi-question-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .row-heading {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .multi-question-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .multiple-choice-block {
            margin-bottom: 20px;
        }

        .multiple-choice-block .selectable-text {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .choice-item {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .choice-input {
            margin-right: 8px;
        }

        .choice-item.correct {
            background-color: #d1fae5;
            padding: 4px;
            border-radius: 4px;
        }

        .choice-item.incorrect {
            background-color: #fee2e2;
            padding: 4px;
            border-radius: 4px;
        }

        .matching-section {
            background-color: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 20px;
        }
        .job-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
            font-size: 0.95rem;
        }

        .job-table th,
        .job-table td {
            border: 1px solid #a1a1aa;
            padding: 12px;
            vertical-align: top;
        }

        .job-table th {
            background: #fff;
            text-align: left;
            font-weight: 600;
        }

        .inline-input {
            width: 70px;
            margin: 0 4px;
            font-size: 0.95rem;
            padding: 2px 4px;
            display: inline-block;
        }

        .drop-zone {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 220px;
            min-height: 58px;
            padding: 12px 16px;
            margin-top: 8px;
            border: 2px dashed #cbd5e0;
            border-radius: 10px;
            background: #f8fafc;
            color: #1e293b;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: border-color 0.2s, background 0.2s;
        }

        .drop-zone .placeholder {
            font-size: 0.95rem;
            color: #475569;
        }

        .drop-zone .drop-value {
            font-weight: 700;
            color: #0f172a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .drop-zone.filled {
            border-style: solid;
            border-color: #2563eb;
            background: #e0f2fe;
            color: #0f172a;
            padding: 14px 12px;
        }

        .drop-zone.over {
            border-color: #2563eb;
            background: #dbeafe;
        }

        .matching-section.statements-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }

        .statement-item {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .statement-number {
            font-weight: 600;
            color: #1f2937;
            min-width: 24px;
        }

        .matching-title {
            font-weight: 600;
            margin-bottom: 12px;
        }

        .matching-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 8px;
        }

        .matching-layout {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            align-items: stretch;
        }

        .plan-map {
            margin-bottom: 16px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .plan-map img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        .drop-column,
        .options-column {
            flex: 1 1 360px;
            min-width: 320px;
        }

        .drop-column {
            background-color: #f8fafc;
            padding: 24px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 600px;
        }

        .options-column {
            background-color: #fff;
            padding: 24px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 520px;
        }

        .drop-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .drop-item .selectable-text {
            flex: 1;
            white-space: normal;
            line-height: 1.4;
            text-align: left;
        }

        .drop-item .drop-zone {
            flex: 0 0 180px;
            margin-top: 0;
        }

        .options-column .drag-options {
            flex-direction: column;
            gap: 12px;
        }

        body.contrast-white-black .drop-column,
        body.contrast-white-black .options-column {
            background-color: #0f172a;
            border-color: #1e293b;
            box-shadow: none;
        }

        body.contrast-white-black .drop-column .drop-zone {
            background: #020617;
            border-color: #1e293b;
            color: #f8fafc;
        }

        body.contrast-white-black .drop-zone.filled {
            background: #0f172a;
            border-color: #4c6ef5;
            color: #f8fafc;
        }

        body.contrast-white-black .drop-zone .placeholder {
            color: #94a3b8;
        }

        body.contrast-white-black .drop-zone .drop-value {
            color: #f8fafc;
        }

        body.contrast-white-black .drag-item {
            background: #1e293b;
            border-color: #1e293b;
            box-shadow: none;
            color: #f8fafc;
        }

        body.contrast-yellow-black .drop-column,
        body.contrast-yellow-black .options-column {
            background-color: #020202;
        }

        body.contrast-yellow-black .drop-zone .placeholder {
            color: #c6a651;
        }

        body.contrast-yellow-black .drop-zone .drop-value {
            color: #fde68a;
        }

        body.contrast-yellow-black .drop-column .drop-zone,
        body.contrast-yellow-black .drop-zone.filled {
            background: #0b0b0b;
            border-color: #4b3f1b;
            color: #fde68a;
        }

        body.contrast-yellow-black .drag-item {
            background: #0b0b0b;
            border-color: #4b3f1b;
            color: #fde68a;
            box-shadow: none;
        }

        .city-item {
            margin-bottom: 0;
        }

        .submit-section {
            text-align: center;
            padding: 24px;
            border-top: 1px solid #e5e7eb;
            background-color: #f9fafb;
            margin-top: 40px;
            border-radius: 8px;
        }

        .submit-button {
            padding: 12px 48px;
            background-color: #059669;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .submit-button:hover {
            background-color: #047857;
        }

        .submit-button:disabled {
            background-color: #9ca3af;
            cursor: not-allowed;
        }

        .results-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .results-content {
            background-color: white;
            padding: 32px;
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .results-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 24px;
            text-align: center;
        }

        .score-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .score-item {
            text-align: center;
            padding: 16px;
            border-radius: 8px;
            background-color: #f3f4f6;
        }

        .score-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #059669;
        }

        .score-label {
            font-size: 0.875rem;
            color: #6b7280;
            margin-top: 4px;
        }

        .close-button {
            width: 100%;
            padding: 12px;
            background-color: #6b7280;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 16px;
        }

        .close-button:hover {
            background-color: #4b5563;
        }

        .bottom-navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 0;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 100;
            box-shadow: none;
        }

        .parts-navigation {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .part-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .part-button {
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .part-button.active {
            background-color: #2563eb;
            color: white;
        }

        .part-button:not(.active) {
            color: #6b7280;
            background-color: transparent;
        }

        .part-button:not(.active):hover {
            color: #111827;
        }

        .question-numbers {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .question-number {
            width: 24px;
            height: 24px;
            font-size: 0.75rem;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            background-color: #e5e7eb;
            color: #6b7280;
        }

        .question-number:hover {
            background-color: #d1d5db;
        }

        .nav-arrow {
            background-color: #000;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .nav-arrow:hover:not(:disabled) {
            background-color: #374151;
        }

        .nav-arrow:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .hidden {
            display: none !important;
        }

        .selectable-text {
            user-select: text;
            cursor: text;
        }

        /* Highlight functionality styles */
        .highlight {
            background-color: #fff176;
            color: #111827 !important;
            cursor: pointer;
            border-radius: 2px;
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
        }

        .highlight * {
            color: inherit !important;
        }

        .contrast-white-black .highlight {
            background-color: #7dd3fc;
            color: #0b1723 !important;
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.45);
        }

        .contrast-yellow-black .highlight {
            background-color: #f59e0b;
            color: #111827 !important;
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.55);
        }

        #highlight-btn,
        #remove-highlight-btn {
            position: absolute;
            padding: 6px 14px;
            font-size: 14px;
            border: 1px solid #888;
            border-radius: 4px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        #highlight-btn {
            background: #fffbe7;
            display: none;
        }

        #remove-highlight-btn {
            background: #ffeaea;
            color: #b00;
            border-color: #b00;
            display: none;
            top: 0;
            left: 0;
        }

        .drag-item.selected {
            border-color: #2563eb;
            background: #e0f2fe;
            color: #0f172a;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }

        .drag-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .drag-options.vertical {
            flex-direction: column;
        }

        .drag-item {
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            padding: 12px 16px;
            background: #fff;
            cursor: grab;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
            min-width: 220px;
            max-width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            word-break: break-word;
            white-space: normal;
        }

        .drag-item:active {
            cursor: grabbing;
            transform: translateY(1px);
            box-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
        }

        .drag-item.used {
            opacity: 0.45;
            cursor: not-allowed;
            background: #e5e7eb;
        }

        /* Options menu & fullscreen controls */
        .menu-button {
            width: 36px;
            height: 32px;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            background: #f7fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }

        .menu-button:hover {
            background: #edf2f7;
        }

        .menu-button:active {
            transform: scale(0.97);
        }

        .menu-icon {
            width: 16px;
            height: 12px;
            display: grid;
            row-gap: 3px;
        }

        .menu-icon span {
            display: block;
            height: 2px;
            border-radius: 999px;
            background: #2d3748;
        }

        .icon-button {
            width: 38px;
            height: 32px;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            background: #f7fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            color: #2d3748;
            font-size: 16px;
        }

        .icon-button:hover {
            background: #edf2f7;
        }

        .icon-button:active {
            transform: scale(0.97);
        }

        .options-modal {
            display: flex;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1100;
            align-items: center;
            justify-content: center;
            padding: 12px;
        }

        .options-modal.hidden {
            display: none;
        }

        .options-modal .modal-content {
            width: min(520px, 100%);
            background: #ffffff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
            text-align: left;
            position: relative;
        }

        .options-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .options-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            flex: 1;
            text-align: center;
        }

        .close-btn {
            border: none;
            background: transparent;
            font-size: 1.4rem;
            line-height: 1;
            cursor: pointer;
            color: #1f2937;
        }

        .options-list {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
        }

        .option-row {
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e5e7eb;
            background: #fff;
            cursor: pointer;
            gap: 6px;
        }

        .option-row:last-child {
            border-bottom: none;
        }

        .option-label {
            font-weight: 700;
            color: #111827;
            font-size: 1.02rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .option-sub {
            font-size: 0.95rem;
            font-weight: 600;
            color: #475569;
            margin-left: 6px;
        }

        .option-row i {
            color: #475569;
        }

        .submenu {
            margin-top: 14px;
        }

        .submenu button {
            width: 100%;
            text-align: left;
            padding: 14px 18px;
            border: none;
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
        }

        .submenu button:last-child {
            border-bottom: none;
        }

        .submenu button:hover {
            background: #f1f5f9;
        }

        .checkmark {
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
            color: transparent;
        }

        .submenu button.selected .checkmark::before {
            content: '✓';
            font-size: 1.1rem;
            color: #059669;
            font-weight: 700;
        }

        .submenu button.selected {
            color: #047857;
            background: #ecfdf5;
        }

        body.contrast-white-black {
            background-color: #020617;
            color: #f8fafc;
        }

        body.contrast-white-black .test-interface,
        body.contrast-white-black .main-content,
        body.contrast-white-black .part-header,
        body.contrast-white-black .questions-section,
        body.contrast-white-black .matching-section,
        body.contrast-white-black .submit-section {
            background-color: #0f172a;
            border-color: #1f2937;
            color: #f8fafc;
        }

        body.contrast-white-black .header {
            background-color: #020617;
            border-bottom-color: #1f2937;
            color: #f8fafc;
        }

        body.contrast-white-black .support-link {
            color: #93c5fd;
        }

        body.contrast-white-black input,
        body.contrast-white-black .question-input,
        body.contrast-white-black select {
            background-color: #0f172a;
            color: #f8fafc;
            border-color: #1e293b;
        }

        body.contrast-yellow-black {
            background-color: #040404;
            color: #fcd34d;
        }

        body.contrast-yellow-black .test-interface,
        body.contrast-yellow-black .main-content,
        body.contrast-yellow-black .part-header,
        body.contrast-yellow-black .questions-section,
        body.contrast-yellow-black .matching-section,
        body.contrast-yellow-black .submit-section {
            background-color: #050505;
            border-color: #5f4b16;
            color: #fcd34d;
        }

        body.contrast-yellow-black .header {
            background-color: #040404;
            border-bottom-color: #5f4b16;
            color: #fcd34d;
        }

        body.contrast-yellow-black .support-link {
            color: #fde68a;
        }

        body.contrast-yellow-black input,
        body.contrast-yellow-black .question-input,
        body.contrast-yellow-black select {
            background-color: #050505;
            color: #fcd34d;
            border-color: #5f4b16;
        }

        body.contrast-white-black .part-title,
        body.contrast-white-black .part-instructions,
        body.contrast-white-black .questions-title,
        body.contrast-white-black .questions-description,
        body.contrast-white-black .scenario-title,
        body.contrast-white-black .selectable-text,
        body.contrast-white-black .test-id {
            color: #e2e8f0 !important;
        }

        body.contrast-white-black .bottom-navigation,
        body.contrast-white-black .parts-navigation {
            background-color: #020617;
            border-top-color: #1e293b;
            color: #f8fafc;
        }

        body.contrast-white-black .part-button {
            background-color: #0f172a;
            color: #cbd5f5;
            border-color: #1e293b;
        }

        body.contrast-white-black .part-button.active {
            background-color: #2563eb;
            color: #fff;
            border-color: #1d4ed8;
        }

        body.contrast-white-black .question-number {
            background-color: #0f172a;
            color: #f8fafc;
            border-color: #1e293b;
        }

        body.contrast-white-black .question-number:hover {
            background-color: #1e293b;
            border-color: #4c6ef5;
        }

        body.contrast-yellow-black .part-title,
        body.contrast-yellow-black .part-instructions,
        body.contrast-yellow-black .questions-title,
        body.contrast-yellow-black .questions-description,
        body.contrast-yellow-black .scenario-title,
        body.contrast-yellow-black .selectable-text,
        body.contrast-yellow-black .test-id {
            color: #fef9c3 !important;
        }

        body.contrast-yellow-black .bottom-navigation,
        body.contrast-yellow-black .parts-navigation {
            background-color: #040404;
            border-top-color: #5f4b16;
        }

        body.contrast-yellow-black .part-button {
            background-color: #0b0b00;
            color: #fcd34d;
            border-color: #5f4b16;
        }

        body.contrast-yellow-black .part-button.active {
            background-color: #facc15;
            color: #0b0b00;
            border-color: #b45309;
        }

        body.contrast-yellow-black .question-number {
            background-color: #050505;
            color: #fcd34d;
            border-color: #4b3f1b;
        }

        body.contrast-yellow-black .question-number:hover {
            background-color: #1f1c0d;
            border-color: #b45309;
        }

        body.contrast-yellow-black .highlight {
            background-color: #38bdf8;
            color: #030712;
        }

        body.contrast-white-black .highlight {
            background-color: #facc15;
            color: #020617;
        }

        .options-modal .modal-content {
            background: #ffffff;
            color: #1f2937;
        }

        body.contrast-white-black .options-modal .modal-content {
            background: #0f172a;
            color: #f8fafc;
            border: 1px solid #1e293b;
            box-shadow: 0 22px 60px rgba(14, 165, 233, 0.25);
        }

        body.contrast-white-black .options-list,
        body.contrast-white-black .submenu button,
        body.contrast-white-black .option-row {
            background: #0f172a;
            color: #f8fafc;
            border-color: #1e293b;
        }

        body.contrast-white-black .option-row i {
            color: #cbd5f5;
        }

        body.contrast-white-black .submenu .checkmark::before {
            color: #22d3ee;
        }

        body.contrast-yellow-black .options-modal .modal-content {
            background: #050505;
            color: #fde68a;
            border: 1px solid #4b3f1b;
            box-shadow: 0 22px 60px rgba(234, 179, 8, 0.25);
        }

        body.contrast-yellow-black .options-list,
        body.contrast-yellow-black .submenu button,
        body.contrast-yellow-black .option-row {
            background: #050505;
            color: #fde68a;
            border-color: #4b3f1b;
        }

        body.contrast-yellow-black .option-row i {
            color: #fde68a;
        }

        body.contrast-yellow-black .submenu .checkmark::before {
            color: #facc15;
        }

        body.contrast-white-black .matching-layout,
        body.contrast-white-black .features-list,
        body.contrast-white-black .cities-list {
            background: #0b1220;
            border: 1px solid #1e293b;
        }

        body.contrast-white-black .features-list .selectable-text,
        body.contrast-white-black .cities-list .selectable-text {
            color: #f8fafc;
        }

        body.contrast-white-black .cities-list .question-input {
            background: #0f172a;
            border-color: #1e293b;
            color: #f8fafc;
        }

        body.contrast-white-black .cities-list {
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
        }

        body.contrast-yellow-black .matching-layout,
        body.contrast-yellow-black .features-list,
        body.contrast-yellow-black .cities-list {
            background: #040505;
            border: 1px solid #4b3f1b;
        }

        body.contrast-yellow-black .features-list .selectable-text,
        body.contrast-yellow-black .cities-list .selectable-text {
            color: #fde68a;
        }

        body.contrast-yellow-black .cities-list .question-input {
            background: #050505;
            border-color: #4b3f1b;
            color: #fde68a;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
        }

        body.contrast-white-black .options-title,
        body.contrast-white-black .close-btn,
        body.contrast-white-black .option-label,
        body.contrast-white-black .option-sub,
        body.contrast-white-black .submenu button span {
            color: #f8fafc;
        }

        body.contrast-yellow-black .options-title,
        body.contrast-yellow-black .close-btn,
        body.contrast-yellow-black .option-label,
        body.contrast-yellow-black .option-sub,
        body.contrast-yellow-black .submenu button span {
            color: #fde68a;
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 12px 16px;
            }

            .parts-navigation {
                gap: 12px;
            }

            .question-numbers {
                max-width: 200px;
            }

            .bottom-navigation {
                padding: 8px 12px;
            }

            .matching-layout {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
    
        /* Contrast surface patch: keep question cards readable in alternate modes */
        .contrast-white-black .questions-container,
        .contrast-white-black .question,
        .contrast-white-black .question-group,
        .contrast-white-black .notes-picture,
        .contrast-white-black .word-list,
        .contrast-white-black .flow-chart,
        .contrast-white-black .flow-chart-box,
        .contrast-white-black .time-row,
        .contrast-white-black .notes-board,
        .contrast-white-black .notes-row,
        .contrast-white-black .note-row,
        .contrast-white-black .volcano-item,
        .contrast-white-black .exam-sheet,
        .contrast-white-black .place-card,
        .contrast-white-black .achievement-card,
        .contrast-white-black .form-field,
        .contrast-white-black .form-card,
        .contrast-white-black .form-grid,
        .contrast-white-black .form-row,
        .contrast-white-black .drag-options-shelf,
        .contrast-white-black .responsibility-item,
        .contrast-white-black .responsibility-list,
        .contrast-white-black .multiple-choice-card,
        .contrast-white-black .aar-paper,
        .contrast-white-black .wccp-paper,
        .contrast-white-black .bhbt-paper,
        .contrast-white-black .radio-label,
        .contrast-white-black .varroa-flow-layout .drop-column,
        .contrast-white-black .varroa-flow-layout .options-column,
        .contrast-white-black .features-list,
        .contrast-white-black .cities-list,
        .contrast-white-black .matching-section,
        .contrast-white-black .section-card,
        .contrast-white-black .table-panel,
        .contrast-white-black .table-card,
        .contrast-white-black .results-content,
        .contrast-white-black .score-item {
            background: #111827 !important;
            color: #f7fafc !important;
            border-color: #4a5568 !important;
            box-shadow: none !important;
        }

        .contrast-yellow-black .questions-container,
        .contrast-yellow-black .question,
        .contrast-yellow-black .question-group,
        .contrast-yellow-black .notes-picture,
        .contrast-yellow-black .word-list,
        .contrast-yellow-black .flow-chart,
        .contrast-yellow-black .flow-chart-box,
        .contrast-yellow-black .time-row,
        .contrast-yellow-black .notes-board,
        .contrast-yellow-black .notes-row,
        .contrast-yellow-black .note-row,
        .contrast-yellow-black .volcano-item,
        .contrast-yellow-black .exam-sheet,
        .contrast-yellow-black .place-card,
        .contrast-yellow-black .achievement-card,
        .contrast-yellow-black .form-field,
        .contrast-yellow-black .form-card,
        .contrast-yellow-black .form-grid,
        .contrast-yellow-black .form-row,
        .contrast-yellow-black .drag-options-shelf,
        .contrast-yellow-black .responsibility-item,
        .contrast-yellow-black .responsibility-list,
        .contrast-yellow-black .multiple-choice-card,
        .contrast-yellow-black .aar-paper,
        .contrast-yellow-black .wccp-paper,
        .contrast-yellow-black .bhbt-paper,
        .contrast-yellow-black .radio-label,
        .contrast-yellow-black .varroa-flow-layout .drop-column,
        .contrast-yellow-black .varroa-flow-layout .options-column,
        .contrast-yellow-black .features-list,
        .contrast-yellow-black .cities-list,
        .contrast-yellow-black .matching-section,
        .contrast-yellow-black .section-card,
        .contrast-yellow-black .table-panel,
        .contrast-yellow-black .table-card,
        .contrast-yellow-black .results-content,
        .contrast-yellow-black .score-item {
            background: #050505 !important;
            color: #f6e05e !important;
            border-color: #5f4b16 !important;
            box-shadow: none !important;
        }

        .contrast-white-black .job-table th,
        .contrast-white-black .job-table td,
        .contrast-white-black .bicycling-table th,
        .contrast-white-black .bicycling-table td,
        .contrast-white-black .course-table th,
        .contrast-white-black .course-table td,
        .contrast-white-black .section-table th,
        .contrast-white-black .section-table td,
        .contrast-white-black .form-input,
        .contrast-white-black .matching-input,
        .contrast-white-black .drop-zone-w,
        .contrast-white-black .drop-zone-small {
            background: #0b1220 !important;
            color: #f7fafc !important;
            border-color: #4a5568 !important;
        }

        .contrast-yellow-black .job-table th,
        .contrast-yellow-black .job-table td,
        .contrast-yellow-black .bicycling-table th,
        .contrast-yellow-black .bicycling-table td,
        .contrast-yellow-black .course-table th,
        .contrast-yellow-black .course-table td,
        .contrast-yellow-black .section-table th,
        .contrast-yellow-black .section-table td,
        .contrast-yellow-black .form-input,
        .contrast-yellow-black .matching-input,
        .contrast-yellow-black .drop-zone-w,
        .contrast-yellow-black .drop-zone-small {
            background: #050505 !important;
            color: #f6e05e !important;
            border-color: #5f4b16 !important;
        }

        .contrast-white-black .question-text,
        .contrast-white-black .question-group-title,
        .contrast-white-black .notes-center-title,
        .contrast-white-black .notes-heading,
        .contrast-white-black .notes-title,
        .contrast-white-black .notes-entry,
        .contrast-white-black .place-title,
        .contrast-white-black .section-heading,
        .contrast-white-black .section-subheading,
        .contrast-white-black .section-card-title,
        .contrast-white-black .form-main-label,
        .contrast-white-black .notes-label,
        .contrast-white-black .row-label,
        .contrast-white-black .row-value,
        .contrast-white-black .table-title,
        .contrast-white-black .card-note,
        .contrast-white-black .fill-number {
            color: #f7fafc !important;
        }

        .contrast-yellow-black .question-text,
        .contrast-yellow-black .question-group-title,
        .contrast-yellow-black .notes-center-title,
        .contrast-yellow-black .notes-heading,
        .contrast-yellow-black .notes-title,
        .contrast-yellow-black .notes-entry,
        .contrast-yellow-black .place-title,
        .contrast-yellow-black .section-heading,
        .contrast-yellow-black .section-subheading,
        .contrast-yellow-black .section-card-title,
        .contrast-yellow-black .form-main-label,
        .contrast-yellow-black .notes-label,
        .contrast-yellow-black .row-label,
        .contrast-yellow-black .row-value,
        .contrast-yellow-black .table-title,
        .contrast-yellow-black .card-note,
        .contrast-yellow-black .fill-number {
            color: #f6e05e !important;
        }
        /* Contrast highlight patch: avoid yellow-on-yellow selected text */
        .contrast-white-black .highlight {
            background-color: #63b3ed !important;
            color: #0b1723 !important;
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.45) !important;
        }

        .contrast-yellow-black .highlight {
            background-color: #38bdf8 !important;
            color: #030712 !important;
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.55) !important;
        }

        .contrast-white-black .highlight *,
        .contrast-yellow-black .highlight * {
            color: inherit !important;
        }
        /* Contrast shell patch: cover older standalone test shells */
        .contrast-white-black .container,
        .contrast-white-black .test-interface,
        .contrast-white-black .main-content,
        .contrast-white-black .passage-container,
        .contrast-white-black .questions-section,
        .contrast-white-black .part-header,
        .contrast-white-black .header,
        .contrast-white-black .submit-section,
        .contrast-white-black .bottom-navigation,
        .contrast-white-black .parts-navigation,
        .contrast-white-black .modal-content {
            background: #111827 !important;
            color: #f7fafc !important;
            border-color: #4a5568 !important;
        }

        .contrast-yellow-black .container,
        .contrast-yellow-black .test-interface,
        .contrast-yellow-black .main-content,
        .contrast-yellow-black .passage-container,
        .contrast-yellow-black .questions-section,
        .contrast-yellow-black .part-header,
        .contrast-yellow-black .header,
        .contrast-yellow-black .submit-section,
        .contrast-yellow-black .bottom-navigation,
        .contrast-yellow-black .parts-navigation,
        .contrast-yellow-black .modal-content {
            background: #050505 !important;
            color: #f6e05e !important;
            border-color: #5f4b16 !important;
        }

        .contrast-white-black .drop-zone:not(.correct):not(.incorrect),
        .contrast-white-black .drag-item,
        .contrast-white-black .input-field {
            background: #0b1220 !important;
            color: #f7fafc !important;
            border-color: #4a5568 !important;
        }

        .contrast-yellow-black .drop-zone:not(.correct):not(.incorrect),
        .contrast-yellow-black .drag-item,
        .contrast-yellow-black .input-field {
            background: #050505 !important;
            color: #f6e05e !important;
            border-color: #5f4b16 !important;
        }
        /* QA safety patch: keep passage UI usable on narrow screens and long content. */
        html,
        body,
        .container {
            max-width: 100%;
        }

        .main-content,
        .passage-container,
        .questions-container,
        .passage-content,
        .question-section,
        .question-group,
        .question,
        .options,
        .option,
        .word-list,
        .matching-section,
        .table-card,
        .table-panel,
        .note-card {
            min-width: 0;
        }

        img,
        svg,
        canvas,
        table {
            max-width: 100%;
        }

        input,
        select,
        textarea,
        .question-input,
        .input-field,
        .form-input,
        .matching-input,
        .inline-input,
        .drop-zone,
        .drag-item {
            max-width: 100%;
        }

        .selectable-text,
        .question-text,
        .option,
        .drag-item,
        .drop-zone,
        .table-card,
        .table-panel {
            overflow-wrap: anywhere;
            word-break: normal;
        }

        @media (max-width: 768px) {
            .watermark-layer {
                font-size: clamp(48px, 18vw, 120px);
                white-space: normal;
                text-align: center;
            }

            .header-menu-link,
            .logo-area,
            .timer {
                max-width: 100%;
                white-space: normal;
                text-align: center;
            }

            .progress-container,
            .bottom-navigation {
                overflow-x: auto;
            }
        }

/* IELTS_FULL_READING_STYLE_OVERRIDE_START */
.watermark-layer{display:none!important}
.passage-container,.questions-container{background:#fff!important}
html,body,.container,.main-content,.passage-container{background-color:#fff!important}
html,body{margin:0!important;width:100%!important;overflow-x:hidden!important}
.main-content,.passage-container,.questions-container{border-left:0!important;border-right:0!important;box-shadow:none!important}
.container{border:0!important;box-shadow:none!important;width:100%!important;max-width:none!important;margin:0!important}
.main-content{margin:0!important;width:100%!important}
.passage-container.hidden+.resizer{display:none!important}
.passage-content,.questions-container{color:#000!important;font-size:1rem!important;line-height:1.55!important}
.section-title{color:#111827!important;font-size:1.4rem!important;font-weight:600!important;border-bottom:1px solid #d8dee6!important;background:transparent!important}
.question-group{background:transparent!important;border-radius:0!important;padding:0!important;margin-bottom:34px!important;border:0!important;box-shadow:none!important}
.question-group-title{color:#000!important;font-size:1rem!important;font-weight:700!important;margin-bottom:8px!important;background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important}
.question{background:transparent!important;border:0!important;border-radius:0!important;padding:0!important;margin:18px 0 34px!important;box-shadow:none!important}
.question:hover{box-shadow:none!important}
.question-text{color:#000!important;font-weight:400!important;margin-bottom:14px!important}
.question-text .question-anchor+*,.question-text strong{font-weight:700!important}
.options{gap:16px!important;padding-left:8px!important;background:transparent!important;border:0!important}
.options label{color:#000!important;line-height:1.45!important;background:transparent!important}
input[type=radio],input[type=checkbox]{accent-color:#1f6fbf}
.input-field.inline-input,.inline-input,.note-inline,.question input[type=text],.summary-completion input[type=text],.completion-table input[type=text]{border:1px solid #888!important;border-radius:2px!important;background:#fff!important;color:#000!important;font-size:1rem!important;text-align:center!important;font-weight:700!important;box-shadow:none!important}
.input-field.inline-input,.inline-input,.note-inline,.completion-table input[type=text]{min-width:150px!important;padding:2px 8px!important}
.input-field.inline-input:focus,.inline-input:focus,.note-inline:focus,.question input[type=text]:focus,.completion-table input[type=text]:focus{border-color:#1f6fbf!important;box-shadow:0 0 0 1px #1f6fbf!important}
.drag-options,.heading-bank,.answer-bank,.word-bank,.drag-options-shelf{gap:8px!important;margin-top:10px!important;background:transparent!important;border:0!important;padding:0!important;box-shadow:none!important}
.drag-item,.heading-option,.answer-option,.word-option{background:#f8fafc!important;border:1px solid #b9c7d8!important;border-radius:4px!important;color:#111827!important;font-size:1rem!important;font-weight:600!important;text-align:left!important;box-shadow:none!important;padding:5px 9px!important}
.drop-zone{min-width:132px!important;min-height:38px!important;border:2px dashed #cbd5e0!important;border-radius:4px!important;background:#f8fafc!important;color:#1f2937!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;margin:0 4px!important}
table{border-collapse:collapse!important;font-size:1rem!important}
th,td{background:#fff!important;border:1px solid #cbd5e0!important;color:#000!important;padding:6px 8px!important;vertical-align:top!important}
th{font-weight:700!important}
.radio-table th:not(:first-child),.radio-table td:not(:first-child),.paragraph-table th:not(:first-child),.paragraph-table td:not(:first-child),.matching-table th:not(:first-child),.matching-table td:not(:first-child){text-align:center!important;width:44px!important}
.mc-options label,.checkbox-options label{display:block!important;margin:8px 0!important}
.reason-options{display:flex!important;flex-direction:column!important;gap:10px!important;margin-top:10px!important;background:transparent!important;border:0!important;padding:0!important}
.reason-option{display:flex!important;align-items:flex-start!important;gap:8px!important;background:transparent!important;border:0!important;padding:0!important;color:#000!important}
.reason-option strong{min-width:18px!important}
.summary-text,.notes-bullets{line-height:2.05!important}
.summary-text .inline-input,.notes-bullets .note-inline{margin:0 6px!important}
.notes-picture{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important}
.notes-center-title{font-weight:700!important;text-align:left!important;margin:0 0 10px!important;color:#000!important}
body.contrast-whiteblack,body.contrast-white-black,html:has(body.contrast-whiteblack),html:has(body.contrast-white-black),body.contrast-whiteblack .container,body.contrast-white-black .container,body.contrast-whiteblack .main-content,body.contrast-white-black .main-content,body.contrast-whiteblack .passage-container,body.contrast-white-black .passage-container,body.contrast-whiteblack .questions-container,body.contrast-white-black .questions-container{background:#111827!important;color:#f8fafc!important}
body.contrast-whiteblack .passage-content,body.contrast-white-black .passage-content,body.contrast-whiteblack .questions-container,body.contrast-white-black .questions-container,body.contrast-whiteblack .section-title,body.contrast-white-black .section-title,body.contrast-whiteblack .question-group-title,body.contrast-white-black .question-group-title,body.contrast-whiteblack .question-text,body.contrast-white-black .question-text,body.contrast-whiteblack .options label,body.contrast-white-black .options label,body.contrast-whiteblack .hint-text,body.contrast-white-black .hint-text,body.contrast-whiteblack .notes-center-title,body.contrast-white-black .notes-center-title{color:#f8fafc!important}
body.contrast-whiteblack table,body.contrast-white-black table,body.contrast-whiteblack th,body.contrast-white-black th,body.contrast-whiteblack td,body.contrast-white-black td{background:#111827!important;color:#f8fafc!important;border-color:#607086!important}
body.contrast-whiteblack th,body.contrast-white-black th{background:#0b1220!important}
body.contrast-whiteblack .drag-item,body.contrast-white-black .drag-item,body.contrast-whiteblack .heading-option,body.contrast-white-black .heading-option,body.contrast-whiteblack .answer-option,body.contrast-white-black .answer-option,body.contrast-whiteblack .word-option,body.contrast-white-black .word-option,body.contrast-whiteblack .drop-zone,body.contrast-white-black .drop-zone,body.contrast-whiteblack .input-field.inline-input,body.contrast-white-black .input-field.inline-input,body.contrast-whiteblack .inline-input,body.contrast-white-black .inline-input,body.contrast-whiteblack .note-inline,body.contrast-white-black .note-inline,body.contrast-whiteblack .question input[type=text],body.contrast-white-black .question input[type=text]{background:#172033!important;color:#f8fafc!important;border-color:#607086!important}
body.contrast-yellowblack,body.contrast-yellow-black,html:has(body.contrast-yellowblack),html:has(body.contrast-yellow-black),body.contrast-yellowblack .container,body.contrast-yellow-black .container,body.contrast-yellowblack .main-content,body.contrast-yellow-black .main-content,body.contrast-yellowblack .passage-container,body.contrast-yellow-black .passage-container,body.contrast-yellowblack .questions-container,body.contrast-yellow-black .questions-container{background:#000!important;color:#f6e05e!important}
body.contrast-yellowblack .passage-content,body.contrast-yellow-black .passage-content,body.contrast-yellowblack .questions-container,body.contrast-yellow-black .questions-container,body.contrast-yellowblack .section-title,body.contrast-yellow-black .section-title,body.contrast-yellowblack .question-group-title,body.contrast-yellow-black .question-group-title,body.contrast-yellowblack .question-text,body.contrast-yellow-black .question-text,body.contrast-yellowblack .options label,body.contrast-yellow-black .options label,body.contrast-yellowblack .hint-text,body.contrast-yellow-black .hint-text,body.contrast-yellowblack .notes-center-title,body.contrast-yellow-black .notes-center-title{color:#f6e05e!important}
body.contrast-yellowblack table,body.contrast-yellow-black table,body.contrast-yellowblack th,body.contrast-yellow-black th,body.contrast-yellowblack td,body.contrast-yellow-black td{background:#000!important;color:#f6e05e!important;border-color:#8a7d22!important}
body.contrast-yellowblack th,body.contrast-yellow-black th{background:#111!important}
body.contrast-yellowblack .drag-item,body.contrast-yellow-black .drag-item,body.contrast-yellowblack .heading-option,body.contrast-yellow-black .heading-option,body.contrast-yellowblack .answer-option,body.contrast-yellow-black .answer-option,body.contrast-yellowblack .word-option,body.contrast-yellow-black .word-option,body.contrast-yellowblack .drop-zone,body.contrast-yellow-black .drop-zone,body.contrast-yellowblack .input-field.inline-input,body.contrast-yellow-black .input-field.inline-input,body.contrast-yellowblack .inline-input,body.contrast-yellow-black .inline-input,body.contrast-yellowblack .note-inline,body.contrast-yellow-black .note-inline,body.contrast-yellowblack .question input[type=text],body.contrast-yellow-black .question input[type=text]{background:#111!important;color:#f6e05e!important;border-color:#8a7d22!important}
/* IELTS_FULL_READING_STYLE_OVERRIDE_END */


/* IELTS_PASSAGE_STYLE_SUPPLEMENT_START */
.question-section{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important}
.drag-bank,.word-list{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin:10px 0 18px!important;background:transparent!important;border:0!important;padding:0!important;box-shadow:none!important}
.drag-sentence{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;margin-top:8px!important;background:transparent!important;border:0!important;box-shadow:none!important}
.drop-paragraph{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important;line-height:2.05!important}
.mcq-list,.tf-options{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important;margin:8px 0 0!important;list-style:none!important}
.mcq-list li,.tf-options li{background:transparent!important;border:0!important;box-shadow:none!important;margin:8px 0!important;padding:0!important;color:#000!important}
.option{background:transparent!important;border:0!important;box-shadow:none!important;color:#000!important;padding:0!important;line-height:1.45!important}
body.contrast-whiteblack .mcq-list li,body.contrast-white-black .mcq-list li,body.contrast-whiteblack .tf-options li,body.contrast-white-black .tf-options li,body.contrast-whiteblack .option,body.contrast-white-black .option{color:#f8fafc!important;background:transparent!important}
body.contrast-yellowblack .mcq-list li,body.contrast-yellow-black .mcq-list li,body.contrast-yellowblack .tf-options li,body.contrast-yellow-black .tf-options li,body.contrast-yellowblack .option,body.contrast-yellow-black .option{color:#f6e05e!important;background:transparent!important}
body.contrast-whiteblack .drag-bank,body.contrast-white-black .drag-bank,body.contrast-whiteblack .word-list,body.contrast-white-black .word-list,body.contrast-yellowblack .drag-bank,body.contrast-yellow-black .drag-bank,body.contrast-yellowblack .word-list,body.contrast-yellow-black .word-list{background:transparent!important;border:0!important;box-shadow:none!important}
/* IELTS_PASSAGE_STYLE_SUPPLEMENT_END */

