:root {
    /* --- Theme-aligned variables for Redesigned YouTube Player --- */
    --dyt-theme-primary: #800080;         /* Purple from vocab-controls */
    --dyt-theme-primary-hover: #6a006a;   /* Darker Purple from vocab-controls */
    --dyt-theme-button-text: #ffffff;     /* White text for buttons */
    --dyt-theme-bg-main-wrapper: #f9f9f9; /* Light grey from display-vocab-style */
    --dyt-theme-bg-input-area: #f0f0f0; /* Slightly darker grey for input section */
    --dyt-theme-bg-content-area: #ffffff; /* White for video/transcript content box */
    --dyt-theme-bg-transcript-pane: #f9f9f9; /* Light grey for transcript pane background */
    --dyt-theme-text-dark: #333333;       /* Standard dark text */
    --dyt-theme-border-light: #eeeeee;    /* Light border (e.g., inside transcript) */
    --dyt-theme-border-medium: #dddddd;   /* Medium border (e.g., containers) */
    --dyt-theme-transcript-active-bg: #e6e6fa; /* Lavender for active transcript line */
    --dyt-theme-timestamp-color: var(--dyt-theme-primary); /* Purple for timestamps */
    --dyt-theme-keyword-bg: #e0eafc;      /* Lighter blue for keyword highlight */
    --dyt-theme-keyword-text: #0056b3;    /* Darker blue for keyword text */

    /* Status message colors (can reuse or define new ones) */
    --dyt-redesigned-status-success-bg: #d4edda;
    --dyt-redesigned-status-success-text: #155724;
    --dyt-redesigned-status-error-bg: #f8d7da;
    --dyt-redesigned-status-error-text: #721c24;
    --dyt-redesigned-status-loading-spinner: var(--dyt-theme-primary);

    /* Original variables for tab system - preserved for .dyt-steps-wrapper */
    --dyt-primary-bg: #f4f4f9; 
    --dyt-secondary-bg: #ffffff;
    --dyt-text-color: #333;
    --dyt-accent-color: #ff0000; 
    --dyt-highlight-bg: #fff0f0; 
    --dyt-border-color: #e0e0e0; 
    --dyt-timestamp-color: #007bff;
    --dyt-input-bg: #fff;
    --dyt-input-border: #ccc;
    --dyt-button-bg: #007bff;
    --dyt-button-text: #fff;
    --dyt-status-success-bg: #e6ffed;
    --dyt-status-success-text: #006421;
    --dyt-status-error-bg: #ffe6e6;
    --dyt-status-error-text: #c00;

    /* Variables used in .dyt-steps-buttons and .dyt-sub-steps-buttons, ensure they are defined or map to existing ones */
    --dyt-steps-separator-color: var(--dyt-border-color, #e0e0e0);
    --dyt-steps-purple-light: #f2e6f2; /* Example, adjust if a theme variable is better */
    --dyt-steps-button-border-color: #d1b3d1; /* Example */
    --dyt-steps-purple-hover: var(--dyt-theme-primary-hover, #6a006a);
    --dyt-steps-text-color-light: var(--dyt-theme-button-text, #ffffff);
    --dyt-steps-purple-dark: var(--dyt-theme-primary, #800080);
    
    /* Variables for redesigned player (some might be duplicates or need consolidation from above) */
    --dyt-redesigned-bg-light: var(--dyt-theme-bg-main-wrapper, #f9f9f9);
    --dyt-redesigned-border-color: var(--dyt-theme-border-medium, #dddddd);
    --dyt-redesigned-bg-medium: var(--dyt-theme-bg-input-area, #f0f0f0);
    --dyt-redesigned-text-light: var(--dyt-theme-button-text, #ffffff); /* Assuming this is for button text on primary bg */
    --dyt-redesigned-text-dark: var(--dyt-theme-text-dark, #333333);
    --dyt-redesigned-primary-color: var(--dyt-theme-primary, #800080);
    --dyt-redesigned-secondary-color: var(--dyt-theme-primary-hover, #6a006a); /* Example: using hover color as secondary */
}

/* --- Redesigned YouTube Exercise Player Layout Styles --- */

.dyt-redesigned-interactive-player-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 25px auto;
    padding: 20px;
    max-width: 1200px;
    width: 95%;
    background-color: var(--dyt-redesigned-bg-light);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 1px solid var(--dyt-redesigned-border-color);
}

.dyt-redesigned-url-input-section { /* Container for URL input and button/select */
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--dyt-redesigned-bg-medium);
    border-radius: 8px;
}

.dyt-redesigned-media-container {
    background-color: var(--dyt-redesigned-text-light); /* This seems to be white, intended for content background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    opacity: 0; 
    transition: opacity 0.7s ease-in-out; 
}

.dyt-redesigned-media-container-visible {
    opacity: 1; 
}

.dyt-redesigned-video-title {
    text-align: center;
    font-size: 1.8em; 
    color: var(--dyt-theme-primary); 
    margin: 0 auto 25px auto; 
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dyt-theme-primary-hover); 
    max-width: 80%; 
}

.dyt-redesigned-segment-title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #560d8a;
    text-align: center;
}

.dyt-redesigned-segment-title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #560d8a;
    text-align: center;
}

.dyt-redesigned-player-transcript-grid {
    display: flex;
    flex-direction: row;
    gap: 20px; 
}

.dyt-redesigned-video-pane {
    flex: 3; 
    min-width: 0; 
    background-color: #000; 
    border-radius: 8px;
    overflow: hidden; 
    max-height: 340px; /* Consider if this max-height is always desired or should be more flexible */
}

.dyt-redesigned-video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
}

.dyt-redesigned-video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; 
    display: block; 
}

.dyt-redesigned-transcript-pane {
    flex: 2; 
    min-width: 0; 
    display: flex; 
    flex-direction: column;
    background-color: var(--dyt-theme-bg-transcript-pane); 
    border-radius: 6px; 
    padding: 15px;
    border: 1px solid var(--dyt-theme-border-light);
    max-height: 340px; /* Matches video pane max-height */
}

.dyt-redesigned-transcript-scrollbox {
    overflow-y: auto;
    height: 100%; 
    padding-right: 5px; /* For scrollbar visibility without content overlap */
}

.dyt-redesigned-transcript-line {
    padding: 8px 10px; 
    margin-bottom: 5px;
    border-bottom: 1px solid var(--dyt-theme-border-light); 
    transition: background-color 0.2s ease;
    display: flex;
    align-items: flex-start;
    border-radius: 3px; 
}
.dyt-redesigned-transcript-line:last-child {
    border-bottom: none;
}

.dyt-redesigned-transcript-timestamp {
    color: var(--dyt-theme-timestamp-color); 
    font-weight: 500; 
    margin-right: 10px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.85em; 
    padding-top: 2px; /* Align with text if needed */
}

.dyt-redesigned-transcript-text {
    flex-grow: 1;
    line-height: 1.6; 
    color: var(--dyt-theme-text-dark); 
    font-size: 0.95em;
}

.dyt-redesigned-transcript-line:hover {
    background-color: #e9e9e9; /* Neutral hover */
}

.dyt-redesigned-transcript-line.active {
    background-color: var(--dyt-theme-transcript-active-bg); 
    border-left: 3px solid var(--dyt-theme-primary); 
    padding-left: 7px; /* Adjust for border */
}
.dyt-redesigned-transcript-line.active .dyt-redesigned-transcript-timestamp {
    color: var(--dyt-theme-primary-hover); 
    font-weight: 600;
}
.dyt-redesigned-transcript-line.active .dyt-redesigned-transcript-text {
    font-weight: 500; /* Or bold if preferred */
}

/* Keyword highlight specifically within the redesigned transcript */
.dyt-redesigned-keyword-highlight {
    background-color: var(--dyt-theme-keyword-bg); 
    color: var(--dyt-theme-keyword-text); 
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 500;
}


/* Mobile Responsiveness for Redesigned Player */
@media (max-width: 800px) { 
    .dyt-redesigned-video-title {
        font-size: 1.4em;
    }

    .dyt-redesigned-segment-title {
        font-size: 16px;
    }

    .dyt-redesigned-player-transcript-grid {
        flex-direction: column;
    }

    .dyt-redesigned-segment-title {
        font-size: 16px;
    }

    .dyt-redesigned-player-transcript-grid {
        flex-direction: column;
    }

    .dyt-redesigned-video-pane,
    .dyt-redesigned-transcript-pane {
        flex-basis: auto; /* Reset flex-basis */
        width: 100%;
        max-height: none; /* Allow them to grow as needed on mobile */
    }

    .dyt-redesigned-transcript-pane {
        margin-top: 20px; 
    }
    
    .dyt-redesigned-transcript-scrollbox {
        max-height: 250px; /* Limit transcript height on mobile */
        height: auto; /* Allow it to be shorter if content is less */
    }

    .dyt-redesigned-url-input-section { /* URL input section stacking */
        flex-direction: column;
    }
    .dyt-redesigned-url-input-section input[type="url"],
    .dyt-redesigned-url-input-section button, /* These are styled in _buttons.css and _inputs.css */
    .dyt-redesigned-url-input-section select { /* but their width adjustment for mobile can be here or in their respective files */
        width: 100%;
        box-sizing: border-box; /* Ensure padding/border doesn't break 100% width */
    }
    .dyt-redesigned-url-input-section select { /* Specific margin for select when stacked */
        margin-top: 10px;
    }
    .dyt-redesigned-interactive-player-wrapper { /* Reduce padding on mobile for the main wrapper */
        padding: 10px;
    }
}

/* --- Tab/Steps Styles --- */
.dyt-steps-wrapper { 
    margin: 20px auto;
    padding: 0;
    background-color: transparent; /* Wrapper itself is transparent */
}

.dyt-steps-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 15px; 
    border-bottom: 1px solid var(--dyt-steps-separator-color, #e0e0e0);
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
    gap: 10px; 
}

.dyt-step-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--dyt-steps-purple-light, #f2e6f2);
    color: var(--dyt-text-color, #333); 
    border-radius: 20px; 
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    border: 1px solid var(--dyt-steps-button-border-color, #d1b3d1);
    font-size: 0.95rem; 
    font-weight: 500;
    line-height: 1.4; 
    flex-grow: 0;
    flex-shrink: 0;
}

.dyt-step-button:hover {
    background-color: var(--dyt-steps-purple-hover, #6a006a);
    color: var(--dyt-steps-text-color-light, #ffffff);
    border-color: var(--dyt-steps-purple-hover, #6a006a);
}

.dyt-step-button.dyt-active-step {
    background-color: var(--dyt-steps-purple-dark, #800080);
    color: var(--dyt-steps-text-color-light, #ffffff);
    font-weight: bold;
    border-color: var(--dyt-steps-purple-dark, #800080);
}

.dyt-step-content {
    display: none; /* JS handles active tab display */
    margin-top: 20px; 
    padding: 15px; 
    background-color: var(--dyt-secondary-bg, #ffffff); 
    border: 1px solid var(--dyt-border-color, #e0e0e0); 
    border-radius: 5px; 
}

/* Specific styling for the Discussion tab content area */
.dyt-step-content[id$="-discussion"] {
    background-color: #fdfdfd; 
    border: 1px solid #e8e8e8; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
    padding: 20px 25px; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
    margin-top: 2em; 
    margin-bottom: 2em; 
}

/* Remove container styling for the Video tab content area */
.dyt-step-content[id$="-video-main"] {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0; 
    max-width: none; 
}

.dyt-step-content[id$="-warmup"] {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-width: none;
}

/* Styles for Sub-Tabs */
.dyt-sub-steps-wrapper {
    margin-top: 15px; 
    padding: 10px;
    background-color: #fdfdfd; /* Light background for sub-tab section */
    border: 1px solid #f0f0f0; /* Subtle border for sub-tab section */
    border-radius: 4px;
}

.dyt-sub-steps-buttons {
    display: flex;
    justify-content: center; 
    margin-bottom: 15px;
    padding-bottom: 10px; 
    border-bottom: 1px solid var(--dyt-steps-separator-color, #e0e0e0);
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
    gap: 8px; 
}

.dyt-sub-step-button {
    padding: 8px 16px; 
    cursor: pointer;
    background-color: var(--dyt-steps-purple-light, #f8f0f8); /* Slightly different shade for sub-tabs */
    color: var(--dyt-text-color, #333); 
    border-radius: 16px; 
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    border: 1px solid var(--dyt-steps-button-border-color, #dcbcdb); /* Slightly different border for sub-tabs */
    font-size: 0.9rem; 
    font-weight: 500;
    line-height: 1.3; 
}

.dyt-sub-step-button:hover {
    background-color: var(--dyt-steps-purple-hover, #7a107a); 
    color: var(--dyt-steps-text-color-light, #ffffff);
    border-color: var(--dyt-steps-purple-hover, #7a107a);
}

.dyt-sub-step-button.dyt-active-step { 
    background-color: var(--dyt-steps-purple-dark, #800080);
    color: var(--dyt-steps-text-color-light, #ffffff);
    font-weight: bold;
    border-color: var(--dyt-steps-purple-dark, #800080);
}

.dyt-sub-steps-content-area {
    margin-top: 15px; 
}

.dyt-sub-step-content {
    display: none; /* JS handles active sub-tab display */
}

/* Ensure headings within tabs have consistent styling if needed */
.dyt-step-content h4 { 
    color: var(--dyt-theme-primary, #800080); 
    margin-top: 0; /* Reset margin top for h4 inside tab content */
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--dyt-theme-primary-hover, #6a006a);
    text-align: center; 
}

/* Specific styling for Discussion tab H4 */
.dyt-step-content[id$="-discussion"] > h4 { /* Use direct child selector if h4 is always direct */
    margin-top: 0;
    margin-bottom: 0.3em;
    font-size: 1.6em; 
    font-weight: 600;
    color: #333; 
    padding-bottom: 0.5em;
    border-bottom: 1px solid #eee; 
    /* text-align: center; is already general */
}

/* --- Styles for Warm-up Page Layouts --- */

/* --- New YouTube-like Warm-up Page Layout --- */
.dyt-warmup-page-layout {
    display: flex;
    gap: 24px; /* Space between main content and sidebar */
}

.dyt-warmup-main-content {
    flex: 3; /* Main content takes up more space */
    min-width: 0; /* Allow shrinking */
}

.dyt-warmup-large-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 12px; /* More rounded corners for a modern look */
    margin-bottom: 16px;
    border: 1px solid var(--dyt-theme-border-light, #eee);
    background-color: #f0f0f0; /* Placeholder bg */
}
.dyt-warmup-thumbnail-placeholder.large { /* For when thumbnail URL is empty */
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 1.1em;
}

.dyt-warmup-video-title-main {
    font-size: 1.6em;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--dyt-theme-text-dark, #212121); /* Darker for titles */
    line-height: 1.3;
}

.dyt-warmup-channel-info {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Key change for overall layout */
    gap: 12px; /* This gap is now between primary-info and actions-group */
    margin-bottom: 16px;
    font-size: 0.9em;
}

.dyt-warmup-channel-primary-info {
    display: flex;
    align-items: center;
    gap: 12px; 
    /* flex-grow: 1; */ /* Removed to allow actions group to grow */
    min-width: 0; /* Ensures channel name can shrink if needed */
}

.dyt-warmup-channel-avatar-placeholder {
    width: 40px;
    height: 40px;
    background-color: #ccc; /* Placeholder color if no image */
    border-radius: 50%;
    flex-shrink: 0;
    /* overflow: hidden; Not strictly needed for background-image but harmless */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Styles for .dyt-warmup-channel-avatar-placeholder img are no longer needed */

.dyt-warmup-channel-text-info {
    display: flex;
    flex-direction: column;
    /* flex-grow: 1; Removed, as primary-info is now the growing element */
    min-width: 0; /* Prevent overflow if channel name is very long */
}

.dyt-warmup-channel-name-main {
    font-weight: 600; /* Slightly bolder like screenshot */
    color: var(--dyt-theme-text-dark, #212121);
    font-size: 1.1em; /* Slightly larger */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dyt-warmup-subscriber-count {
    color: #606060; /* Darker grey like screenshot */
    font-size: 0.9em;
}

.dyt-warmup-channel-info .dyt-subscribe-button {
    /* margin-left: auto; Removed as positioning is handled by new parent group */
    padding: 8px 16px; 
    font-size: 0.9em;
    flex-shrink: 0; /* Prevent subscribe button from shrinking */
}

.dyt-warmup-channel-actions-group {
    display: flex;
    align-items: center;
    gap: 12px; 
    flex-grow: 1; 
    justify-content: flex-end; 
    /* flex-wrap: nowrap; Removed from base, will be handled by media queries or default to wrap */
}

.dyt-warmup-action-buttons { /* Container for like/dislike, share, more */
    display: flex;
    align-items: center; 
    gap: 8px;
    /* margin-bottom: 20px; Removed, margin is on .dyt-warmup-channel-info */
    /* flex-wrap: nowrap; Removed from base style. Wrapping is handled by media query. */
}

/* This block was already added in the previous step, this is a correction of the previous SEARCH block.
   The following .dyt-warmup-video-stats-line block is what should be present.
   If it's not, this diff will fail again, and we might need to use write_to_file or re-evaluate.
*/
div.dyt-warmup-video-stats-line { 
    margin-bottom: 12px; 
    display: flex;
    flex-wrap: wrap; 
    gap: 4px 8px; 
}

.dyt-warmup-video-stats-line .dyt-warmup-view-count, /* Simplified selector */
.dyt-warmup-video-stats-line .dyt-warmup-upload-date { /* Simplified selector */
    font-size: 0.8em !important; 
    font-weight: 700 !important; 
    color: #800080 !important; 
}

.dyt-warmup-video-stats-line .dyt-warmup-upload-date::before { /* Kept specific selector for the ::before */
    /* The color of the dot should remain as it was, controlled by --dyt-theme-text-light */
    content: "•";
    margin: 0 6px 0 2px; /* Adjust spacing around the dot */
    color: var(--dyt-theme-text-light, #909090);
}


.dyt-warmup-like-dislike-group {
    display: flex;
    align-items: center;
    background-color: #f2f2f2; /* Match pill button bg */
    border-radius: 18px; /* Pill shape for the group */
}

.dyt-warmup-like-dislike-group .dyt-warmup-pill-button {
    background-color: transparent; /* Individual buttons transparent */
    border-radius: 0; /* Remove individual radius */
    padding: 8px 12px; /* Adjust padding */
}
.dyt-warmup-like-dislike-group .dyt-warmup-pill-button:hover {
    background-color: rgba(0,0,0,0.05); /* Slight hover for individual buttons */
}

.dyt-warmup-like-dislike-group .dyt-like-button {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    padding-right: 10px; /* Space before separator */
}

.dyt-warmup-like-dislike-group .dyt-dislike-button {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-left: 1px solid #d3d3d3; /* Separator line */
    padding-left: 10px; /* Space after separator */
}
.dyt-warmup-like-dislike-group .dyt-dislike-button .dyt-button-icon {
    margin-right: 0; /* No extra space if only icon */
}


.dyt-warmup-share-button .dyt-button-icon {
    font-size: 1.2em; /* Slightly larger share icon */
}

.dyt-warmup-more-options-button {
    padding: 8px 10px; /* Make it more circular */
}
.dyt-warmup-more-options-button .dyt-button-icon {
    font-size: 1.2em; /* Adjust icon size */
    font-weight: bold;
}


/* Pill button styles themselves are in components/_buttons.css */

.dyt-warmup-description-box {
    background-color: var(--dyt-theme-bg-input-area, #f0f0f0);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.9em;
}
.dyt-warmup-view-date-line {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}
.dyt-warmup-view-date-line .dyt-warmup-view-count-actual,
.dyt-warmup-view-date-line .dyt-warmup-date-actual {
    font-weight: 500;
}
.dyt-warmup-view-date-line .dyt-warmup-date-actual::before {
    content: "•";
    margin: 0 6px;
}

.dyt-warmup-description-box h4 { /* Title for "Warm-up Questions" inside the box */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.05em; 
    font-weight: 600;
    color: var(--dyt-theme-text-dark, #333);
    text-align: left;
    border-bottom: none; /* Override general tab h4 style */
    padding-bottom: 0; /* Override general tab h4 style */
}
.dyt-warmup-description-box .dyt-questions-list { /* Questions list inside description box */
    margin-top: 0;
    padding-left: 18px; /* Indent list items */
}
.dyt-warmup-description-box .dyt-questions-list li {
    font-size: 0.95em; 
    line-height: 1.5;
    margin-bottom: 6px;
    padding: 0;
    border-bottom: none; /* Override general question list item style */
}

.dyt-warmup-sidebar {
    flex: 1; 
    min-width: 0; 
    max-width: 320px; 
}
.dyt-warmup-sidebar h4 { /* "Up Next" title */
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: left;
    border-bottom: 1px solid var(--dyt-theme-border-light);
    padding-bottom: 8px;
    color: var(--dyt-theme-text-dark);
}

.dyt-warmup-other-videos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dyt-warmup-other-video-item {
    margin-bottom: 12px;
}
.dyt-warmup-other-video-item a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.dyt-warmup-other-video-item a:hover .dyt-warmup-other-video-title {
    color: var(--dyt-theme-primary);
}

.dyt-warmup-other-video-thumbnail {
    flex: 0 0 100px; /* Made smaller */
    height: 56px; /* Made smaller, maintaining ~16:9 */
    overflow: hidden;
    border-radius: 6px;
    background-color: #f0f0f0; /* Placeholder bg for the container */
}
.dyt-warmup-other-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dyt-warmup-thumbnail-placeholder.small { /* For sidebar video placeholders */
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.8em;
    border-radius: 6px;
}

.dyt-warmup-other-video-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; 
}

.dyt-warmup-other-video-title {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--dyt-theme-text-dark);
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em; 
}

.dyt-warmup-other-video-author {
    font-size: 0.8em;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dyt-warmup-flashcards-section-bottom { /* Container for flashcards below main/sidebar */
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--dyt-theme-border-medium, #dddddd);
}
.dyt-warmup-flashcards-section-bottom > h4 { /* Hide h4 if flashcard shortcode adds its own */
    display: none; 
}

/* Responsive adjustments for new YouTube-like Warm-up layout */
@media (max-width: 900px) { 
    .dyt-warmup-page-layout {
        flex-direction: column;
    }
    .dyt-warmup-sidebar {
        max-width: 100%; 
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .dyt-warmup-channel-info { /* Allow channel info and actions to wrap */
        flex-wrap: wrap;
        gap: 10px; /* Adjust gap for wrapped items */
    }
    .dyt-warmup-channel-primary-info {
        flex-basis: 100%; /* Channel name takes full width */
        margin-bottom: 8px; /* Space below channel name when actions wrap */
    }
    .dyt-warmup-channel-actions-group {
        flex-basis: 100%; /* Actions group takes full width on new line */
        justify-content: flex-start; /* Changed from space-between for more predictable wrapping */
        flex-wrap: wrap; /* Allow subscribe button and action-buttons div to wrap */
        gap: 8px; /* Add some gap if they wrap */
    }
    
    .dyt-warmup-action-buttons { /* This is the group of like,share,etc. */
        justify-content: center; /* Center these buttons if they are the only thing left or if they wrap themselves */
        flex-wrap: wrap; /* Allow like/share/more to wrap if needed */
        /* gap: 8px; is already defined in the base style, so it should be inherited */
    }

    .dyt-warmup-sidebar { 
        display: none;
    }
    .dyt-warmup-main-content { 
        flex-basis: 100%;
    }
}

/* Further responsive adjustments for action buttons on smaller screens */
@media (max-width: 600px) {
    .dyt-warmup-more-options-button {
        display: none;
    }
}

@media (max-width: 540px) {
    .dyt-warmup-share-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .dyt-warmup-dislike-button {
        display: none;
    }
    /* Adjust like button to take full pill shape if dislike is hidden */
    .dyt-warmup-like-dislike-group .dyt-like-button {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
        padding-right: 12px; /* Revert to standard horizontal padding */
        /* border-left: none; was not needed as separator is on dislike button */
    }
}

@media (max-width: 420px) {
    .dyt-warmup-like-dislike-group { /* Hide the entire like/dislike group */
        display: none;
    }
}

@media (max-width: 380px) { /* Very small screens */
    .dyt-warmup-channel-info .dyt-subscribe-button {
        display: none;
    }
    /* Optional: Adjust layout if all buttons are gone */
    .dyt-warmup-channel-actions-group {
        min-width: 0; /* Allow it to shrink completely */
        gap: 0; /* No gap needed if no visible children or only one */
    }
    .dyt-warmup-channel-primary-info {
         /* Allow channel name to take full width if no buttons.
           Parent .dyt-warmup-channel-info uses space-between,
           so if actions-group is effectively 0-width, primary-info will expand.
           No explicit flex-grow needed here if actions-group truly shrinks.
         */
    }
}


/* --- Older Two-Column Flex Layout for Warm-up (Potentially superseded) --- */
/* This was previously under "Styles for New Warm-up Section Layout" */
.dyt-warmup-flex-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    align-items: stretch; 
}

.dyt-warmup-left-column,
.dyt-warmup-right-column {
    flex: 1 1 48%; 
    box-sizing: border-box;
    min-width: 280px; 
    display: flex; 
    flex-direction: column; 
}

.dyt-warmup-left-column > p, 
.dyt-warmup-left-column > ol.dyt-questions-list {
    flex-shrink: 0; 
}
.dyt-warmup-left-column > img.dyt-warmup-thumbnail { /* Note: class is .dyt-warmup-thumbnail */
    flex-shrink: 0; 
}

/* Container style for the Warm-up tab content (when using the older flex layout) */
.dyt-step-content[id$="-warmup"].dyt-warmup-flex-layout-active { /* Add a class to trigger this if needed */
    background-color: #fdfdfd; 
    border: 1px solid #e8e8e8; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
    padding: 20px 25px; 
    max-width: 1100px; 
    margin-left: auto; 
    margin-right: auto; 
    margin-top: 2em; 
    margin-bottom: 2em; 
}

.dyt-warmup-thumbnail { /* Thumbnail style for the older flex layout */
    max-width: 100%; 
    height: auto; 
    object-fit: contain; 
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid var(--dyt-theme-border-medium, #dddddd); 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
}

.dyt-warmup-left-column p:first-child { /* Intro text for older flex layout */
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Responsive stacking for the older Warm-up flex layout */
@media (max-width: 768px) {
    .dyt-warmup-flex-container .dyt-warmup-left-column, /* Specific to this older layout */
    .dyt-warmup-flex-container .dyt-warmup-right-column {
        flex-basis: 100%; 
    }

    /* Mobile styling for the older warm-up tab container if it's active */
    .dyt-step-content[id$="-warmup"].dyt-warmup-flex-layout-active {
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important; 
    }

    /* Mobile box style for the left column in the older layout */
    .dyt-step-content[id$="-warmup"].dyt-warmup-flex-layout-active .dyt-warmup-left-column {
        background-color: var(--dyt-theme-bg-main-wrapper, #f9f9f9); 
        padding: 15px; 
        border-radius: 5px; 
        border: 1px solid var(--dyt-theme-border-medium, #dddddd); 
        margin-bottom: 15px; 
    }
    
    .dyt-step-content[id$="-warmup"].dyt-warmup-flex-layout-active .dyt-warmup-right-column {
        background-color: transparent; 
        padding: 0; 
        border: none;
    }

    /* Titles within the older warm-up layout on mobile */
    .dyt-step-content[id$="-warmup"].dyt-warmup-flex-layout-active .dyt-warmup-content-wrapper > h4,
    .dyt-step-content[id$="-warmup"].dyt-warmup-flex-layout-active .dyt-warmup-right-column > h4 {
        margin-bottom: 15px; 
        /* General .dyt-step-content h4 rule from _tabs.css should apply for color/border */
    }
}


/* --- Warm-up Tab Loading Spinner and Content Transition (General) --- */
.dyt-warmup-loading-spinner { /* This can be used by either warm-up layout if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px; 
    padding: 20px;
}

.dyt-warmup-loading-spinner::before {
    content: "";
    display: inline-block;
    width: 30px; 
    height: 30px; 
    border: 4px solid rgba(128, 0, 128, 0.2); 
    border-radius: 50%;
    border-top-color: var(--dyt-theme-primary, #800080); 
    animation: dyt-warmup-spinner 0.8s ease-in-out infinite; /* Animation in _spinners.css */
}

.dyt-warmup-content-wrapper { /* General wrapper for content to fade in */
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.dyt-warmup-content-wrapper-visible {
    opacity: 1;
}

/* --- Button Styles --- */

/* Buttons in URL Input Section */
.dyt-redesigned-url-input-section button {
    padding: 10px 18px;
    background-color: var(--dyt-redesigned-primary-color);
    color: var(--dyt-redesigned-text-light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}
.dyt-redesigned-url-input-section button:hover {
    background-color: var(--dyt-redesigned-secondary-color);
}

/* Warm-up Page Pill Buttons */
.dyt-warmup-pill-button {
    background-color: #f2f2f2;
    border: none;
    border-radius: 18px; /* Pill shape */
    padding: 8px 16px;
    font-size: 0.85em;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dyt-warmup-pill-button:hover {
    background-color: #e0e0e0;
}

.dyt-subscribe-button { /* Specific pill button style */
    background-color: #cc0000; /* YouTube red for subscribe */
    color: #fff;
}
.dyt-subscribe-button:hover {
    background-color: #aa0000;
}

/* Icon utility for buttons */
.dyt-button-icon {
    display: inline-flex; /* Helps with alignment of image */
    align-items: center;
    justify-content: center;
    line-height: 1; 
}

.dyt-button-icon img {
    height: 1em; /* Set height relative to parent font-size (button text) */
    width: auto; /* Maintain aspect ratio */
    max-height: 16px; /* Absolute max to prevent excessive size */
    max-width: 16px;  /* Absolute max to prevent excessive size */
    vertical-align: middle; 
    object-fit: contain; /* Ensures the image scales down to fit if necessary */
}

/* For the 'more options' button using ellipsis character */
.dyt-warmup-more-options-button .dyt-button-icon {
    font-size: 1.2em; /* Make ellipsis slightly larger if it's text */
    font-weight: bold;
    color: #000000;
}


/* MCQ Check Button */
.dyt-mcq-check-button {
    padding: 10px 25px; /* Adjusted padding */
    background-color: var(--dyt-theme-primary, #800080);
    color: var(--dyt-theme-button-text, #fff);
    /* font-size: 1em; /* Adjusted font size - removed to inherit or be set by context */
    display: inline-block; /* Ensure text-align works */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em; /* Relative to root/body */
    font-weight: bold;
    transition: background-color 0.2s ease;
}
.dyt-mcq-check-button:hover {
    background-color: var(--dyt-theme-primary-hover, #6a006a);
}
.dyt-mcq-check-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* --- Input and Select Styles --- */

/* URL Input Field */
.dyt-redesigned-url-input-section input[type="url"] {
    flex-grow: 1;
    padding: 10px 12px;
    border: 1px solid var(--dyt-redesigned-border-color);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--dyt-redesigned-text-light); /* Assuming this was meant for input bg, or should be a specific input bg variable */
    color: var(--dyt-redesigned-text-dark);
}

/* Select Element in URL Input Section */
.dyt-redesigned-url-input-section select {
    padding: 10px 18px;
    background-color: var(--dyt-redesigned-text-light); /* Assuming this was meant for select bg, or should be a specific select bg variable */
    color: var(--dyt-redesigned-text-dark);
    border: 1px solid var(--dyt-redesigned-border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.dyt-redesigned-url-input-section select:hover {
    background-color: var(--dyt-redesigned-secondary-color); /* This might need adjustment if secondary-color is too dark for a select hover */
    /* A lighter shade or border highlight might be more typical for select hover */
    /* For example: border-color: var(--dyt-redesigned-primary-color); */
}

/* --- Status Message Styles --- */

.dyt-redesigned-status-messages {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: none; 
    text-align: center;
    font-size: 0.95rem;
}
.dyt-redesigned-status-messages.success {
    background-color: var(--dyt-redesigned-status-success-bg);
    color: var(--dyt-redesigned-status-success-text);
    border: 1px solid var(--dyt-redesigned-status-success-text);
    display: block; /* To show when class is added */
}
.dyt-redesigned-status-messages.error {
    background-color: var(--dyt-redesigned-status-error-bg);
    color: var(--dyt-redesigned-status-error-text);
    border: 1px solid var(--dyt-redesigned-status-error-text);
    display: block; /* To show when class is added */
}
.dyt-redesigned-status-messages.loading {
    color: var(--dyt-redesigned-text-dark);
    display: flex; /* Keep as flex for spinner alignment */
    align-items: center;
    justify-content: center;
    min-height: 50px;
    background-color: transparent; /* Or a neutral loading background */
    border: 1px solid var(--dyt-redesigned-border-color); /* Optional: border for loading state */
}
.dyt-redesigned-status-messages.loading::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border: 3px solid rgba(0,0,0,0.1); /* Spinner track */
    border-radius: 50%;
    border-top-color: var(--dyt-redesigned-status-loading-spinner); /* Spinner color */
    animation: dyt-redesigned-spinner 0.8s ease-in-out infinite; /* Animation defined in _spinners.css */
}

/* --- Spinner Animations --- */

@keyframes dyt-redesigned-spinner {
    to { transform: rotate(360deg); }
}

@keyframes dyt-warmup-spinner {
    to { transform: rotate(360deg); }
}

/* 
   Note: The ::before pseudo-elements that use these animations 
   are defined in their respective component/layout files 
   (e.g., _status-messages.css for dyt-redesigned-status-messages.loading::before,
    and _warmup-page.css or similar for .dyt-warmup-loading-spinner::before).
*/

/* --- MCQ Styles --- */

/* Timestamp styling for MCQs - now only applies to the time itself */
.dyt-mcq-option label .dyt-mcq-answer-timestamp {
    color: var(--dyt-theme-primary); /* Purple, same as transcript timestamps */
    text-decoration: underline;
    cursor: pointer;
}

.dyt-mcq-option label .dyt-mcq-answer-timestamp:hover {
    color: var(--dyt-theme-primary-hover); /* Darker purple on hover */
}

@keyframes dytMcqGlow {
    0% { box-shadow: 0 0 4px 2px rgba(128, 0, 128, 0.2); }
    50% { box-shadow: 0 0 12px 5px rgba(128, 0, 128, 0.5); }
    100% { box-shadow: 0 0 4px 2px rgba(128, 0, 128, 0.2); }
}

.dyt-mcq-item.dyt-mcq-item-glowing {
    animation: dytMcqGlow 1.8s infinite ease-in-out;
    /* Optionally, ensure the border itself is more prominent or matches the glow */
    /* border: 1px solid var(--dyt-theme-primary, #800080); */
}

@keyframes dytMcqFlash {
    0% { background-color: var(--dyt-theme-bg-content-area, #fff); }
    50% { background-color: var(--dyt-theme-primary-light-trans, rgba(128, 0, 128, 0.1)); }
    100% { background-color: var(--dyt-theme-bg-content-area, #fff); }
}

.dyt-mcq-item.dyt-mcq-flash {
    animation: dytMcqFlash 1.5s ease-in-out;
}

/* --- MCQ Grid Styles --- */
.dyt-mcqs-area {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 25px; 
    padding: 0; 
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.dyt-mcq-item {
    width: 250px; 
    background-color: var(--dyt-theme-bg-content-area, #fff);
    border: 1px solid var(--dyt-theme-border-light, #eee);
    border-left: 4px solid transparent; /* For status indication */
    border-radius: 6px;
    padding: 15px;
    transition: border-left-color 0.3s ease, box-shadow 3s ease-out; /* Keep 3s for glow fade-out */
    font-size: 0.85em;
    display: flex; 
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08); 
}
.dyt-mcq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.12); 
}

.dyt-mcq-item.dyt-mcq-correct { border-left-color: #28a745; } /* Green */
.dyt-mcq-item.dyt-mcq-incorrect { border-left-color: #dc3545; } /* Red */
.dyt-mcq-item.dyt-mcq-unanswered { border-left-color: #ffc107; } /* Yellow */

.dyt-mcq-question-text {
    font-weight: 600; 
    margin-bottom: 12px; 
    color: var(--dyt-theme-text-dark, #333);
    line-height: 1.4;
    font-size: 0.95em; 
}

.dyt-mcq-question-text .dyt-mcq-answer-timestamp {
    color: var(--dyt-theme-primary);
    text-decoration: underline;
    cursor: pointer;
    font-weight: normal;
    margin-left: 8px;
}

.dyt-mcq-question-text .dyt-mcq-answer-timestamp:hover {
    color: var(--dyt-theme-primary-hover);
}

.dyt-mcq-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; 
}

.dyt-mcq-option {
    margin-bottom: 6px;
}
.dyt-mcq-option:last-child {
    margin-bottom: 0;
}

.dyt-mcq-option input[type="radio"] {
    display: none; 
}

.dyt-mcq-option label {
    display: block;
    padding: 10px 12px; 
    border: 1px solid var(--dyt-theme-border-medium, #ddd);
    border-radius: 8px; 
    background-color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    font-size: 0.9em; 
    line-height: 1.3;
}

.dyt-mcq-option input[type="radio"]:checked + label {
    background-color: var(--dyt-theme-primary, #800080);
    color: var(--dyt-theme-button-text, #fff);
    border-color: var(--dyt-theme-primary-hover, #6a006a);
}

.dyt-mcq-option label:hover {
    background-color: #f4f4f8; 
    border-color: #c0c0dd;
}

/* Feedback Styles for MCQ Options */
.dyt-mcq-item.dyt-mcq-checked .dyt-mcq-option label {
    cursor: default;
}

.dyt-mcq-item.dyt-mcq-checked .dyt-mcq-option.dyt-mcq-correct-answer label {
    background-color: #e8f5e9; 
    border-color: #a5d6a7;
    color: #1d5b2a;
    font-weight: bold;
}
.dyt-mcq-item.dyt-mcq-checked .dyt-mcq-option.dyt-mcq-correct-answer label::after {
    content: " \2713"; 
    font-weight: bold;
    color: #28a745;
}

.dyt-mcq-item.dyt-mcq-checked .dyt-mcq-option.dyt-mcq-selected-incorrect label {
    background-color: #fbebed; 
    border-color: #f5c6cb;
    color: #7c1d25;
    text-decoration: line-through;
}
.dyt-mcq-item.dyt-mcq-checked .dyt-mcq-option.dyt-mcq-selected-incorrect label::after {
    content: " \2717"; 
    font-weight: bold;
    color: #dc3545;
}

/* Controls for MCQs */
.dyt-mcq-controls {
    flex-basis: 100%; 
    margin-top: 25px; 
    padding-top: 20px; 
    text-align: center; 
    border-top: 1px solid var(--dyt-theme-border-medium, #ddd); 
}

/* .dyt-mcq-check-button styles are in _buttons.css */

.dyt-mcq-feedback-overall {
    display: none !important; /* Permanently hide the feedback bar */
}

/* Responsive adjustments for MCQ Grid */
@media (max-width: 600px) { 
    .dyt-mcqs-area {
        padding: 0 10px; 
    }
    .dyt-mcq-item {
        font-size: 0.8em; 
        width: 100%; /* Make items full width on small screens */
        max-width: 300px; /* Optional: constrain max width even on mobile */
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Styles for Highlighted Keywords and Definition Tooltip --- */
.dyt-highlighted-keyword { /* This is the new keyword highlight style, used with JS for tooltips */
    color: var(--dyt-theme-keyword-text, #0056b3); 
    background-color: var(--dyt-theme-keyword-bg, #e0eafc); 
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 500; /* Matches .dyt-redesigned-keyword-highlight */
    cursor: help;
    /* border-bottom: 1px dotted var(--dyt-theme-keyword-text); /* Optional: dotted underline */
}

.dyt-definition-tooltip {
    position: absolute;
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    line-height: 1.4;
    z-index: 10000; /* High z-index */
    pointer-events: none; /* Allow clicks to pass through */
    white-space: normal; /* Allow text wrapping */
    max-width: 300px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    display: none; /* Hidden by default, JS handles visibility */
    opacity: 0; /* For fade transitions if managed by JS */
}

/* --- Styles for Question Lists (Warm-up and Discussion) --- */

/* .dyt-questions-list is used for both Warm-up (ul/ol) and Discussion (ol) */
.dyt-questions-list {
    margin-top: 15px;
    padding-left: 0; /* Default, will be overridden for ol needing indentation */
    list-style: none; /* Default, overridden for ol */
}

/* Common li styles for both lists initially */
.dyt-questions-list li {
    font-size: 1rem; /* Base font size for list items */
    /* Other common properties like line-height could be here if truly universal */
}

/* Styling for Warm-up questions (typically ol, but can be ul) */
/* These apply when .dyt-questions-list is directly inside a warm-up tab content,
   but NOT when inside .dyt-warmup-description-box (those are more specific in _warmup-page.css) */
.dyt-step-content[id$="-warmup"] > .dyt-questions-list { /* Direct child to avoid .dyt-warmup-description-box */
    /* No specific styling here if it's meant to be generic;
       specifics for ol are below. If ul is used, it will be unstyled by default. */
}

.dyt-step-content[id$="-warmup"] > ol.dyt-questions-list { /* If it's an ordered list directly in warm-up */
    list-style-type: decimal; 
    padding-left: 20px; 
    margin-left: 0; 
}

.dyt-step-content[id$="-warmup"] > .dyt-questions-list li { /* For li directly in warm-up tab */
    padding: 8px 0; 
    border-bottom: 1px dotted var(--dyt-border-color, #e0e0e0); 
    line-height: 1.6; 
    margin-bottom: 0; 
    padding-left: 0; 
}
.dyt-step-content[id$="-warmup"] > .dyt-questions-list li:last-child {
    border-bottom: none;
}


/* Specific styles for Discussion Questions (ol) */
.dyt-step-content[id$="-discussion"] ol.dyt-questions-list { /* Assumes it's always an OL for discussion */
    list-style: decimal;
    margin-left: 1.5em; /* Indentation for ordered list numbers */
    padding-left: 1em; /* Further padding for content */
}

.dyt-step-content[id$="-discussion"] ol.dyt-questions-list li {
    line-height: 1.7; 
    margin-bottom: 1.2em; /* Space between questions */
    padding-left: 0.5em; /* Padding for each list item's content */
    font-size: 1rem; /* Explicitly set for discussion questions */
}
.dyt-step-content[id$="-discussion"] ol.dyt-questions-list li p {
    margin: 0; /* Remove default p margin from wpautop */
    /* display: inline; /* Consider if this is always desired */
}

/* Note: Styles for questions within .dyt-warmup-description-box are located 
   in layout/_warmup-page.css due to their specific context and styling. */

/* --- Styles Specific to Discussion Tab Content --- */

.dyt-discussion-context-title {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 0.3em; /* Relative to the H4 above it */
    margin-bottom: 1.5em;
    font-style: italic;
}

.dyt-discussion-separator {
    border: 0;
    border-top: 1px dashed #cccccc;
    margin: 1.5em 0;
}

/* 
   Note: 
   - Styles for .dyt-step-content[id$="-discussion"] (the container) are in layout/_tabs.css
   - Styles for h4 within the discussion tab are in layout/_tabs.css
   - Styles for ol.dyt-questions-list within the discussion tab are in sections/_questions.css
*/
