/* =====================================================================
   Èdè Yorùbá — Instructor Manual & Student Workbook Styles
   ===================================================================== */

/* ==========================================
   INSTRUCTOR MANUAL VIEWER
   ========================================== */
.yl-manual-viewer {
    background: #f7f6f3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.yl-manual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #fff;
    flex-wrap: wrap;
    gap: 16px;
}

.yl-manual-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.yl-manual-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    margin: 0 0 4px;
    font-weight: 700;
}

.yl-manual-subtitle {
    margin: 0;
    opacity: 0.85;
    font-size: 14px;
}

.yl-manual-header-right {
    display: flex;
    gap: 8px;
}

.yl-btn-outline {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    color: #fff !important;
    font-size: 13px !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.2s;
}

.yl-btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: #fff !important;
}

.yl-manual-body {
    display: flex;
    height: calc(100vh - 200px);
    min-height: 600px;
}

/* Sidebar */
.yl-manual-sidebar {
    width: 300px;
    min-width: 300px;
    background: #fff;
    border-right: 1px solid #e2e0dc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.yl-manual-sidebar-tabs {
    display: flex;
    border-bottom: 1px solid #e2e0dc;
    flex-shrink: 0;
}

.yl-sidebar-tab {
    flex: 1;
    padding: 10px 8px;
    border: none;
    background: #fafaf8;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
}

.yl-sidebar-tab.active {
    background: #fff;
    color: #1a365d;
    box-shadow: inset 0 -2px 0 #1a365d;
}

.yl-sidebar-panel {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.yl-sidebar-panel.active {
    display: flex;
    flex-direction: column;
}

/* TOC */
.yl-toc-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e0dc;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.yl-toc-list {
    flex: 1;
    overflow-y: auto;
}

.yl-toc-level {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
}

.yl-toc-level:hover {
    background: #f0ece6;
}

.yl-toc-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.yl-toc-label {
    flex: 1;
}

.yl-toc-page {
    font-size: 11px;
    color: #999;
    flex-shrink: 0;
}

.yl-toc-children {
    padding-left: 28px;
}

.yl-toc-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 12.5px;
    color: #555;
    gap: 6px;
    transition: background 0.15s;
}

.yl-toc-item:hover {
    background: #f5f3ef;
    color: #1a365d;
}

/* Bookmarks */
.yl-bookmarks-list {
    flex: 1;
    overflow-y: auto;
}

.yl-bookmark-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.15s;
    gap: 8px;
    margin-bottom: 4px;
}

.yl-bookmark-item:hover {
    background: #f5f3ef;
}

.yl-bookmark-info {
    flex: 1;
}

.yl-bookmark-label {
    display: block;
    font-weight: 500;
    font-size: 13px;
}

.yl-bookmark-page {
    font-size: 11px;
    color: #999;
}

.yl-bookmark-delete {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}

.yl-bookmark-delete:hover {
    color: #E53E3E;
}

/* Notes */
.yl-notes-textarea {
    width: 100%;
    flex: 1;
    min-height: 200px;
    border: 1px solid #e2e0dc;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    resize: vertical;
    box-sizing: border-box;
    line-height: 1.6;
}

.yl-notes-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
}

.yl-notes-saved { color: #38A169; }
.yl-notes-saving { color: #D69E2E; }

/* Main Viewer */
.yl-manual-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.yl-manual-toolbar {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    background: #fff;
    border-bottom: 1px solid #e2e0dc;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.yl-toolbar-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.yl-tool-btn {
    background: #f7f6f3;
    border: 1px solid #e2e0dc;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
    white-space: nowrap;
}

.yl-tool-btn:hover {
    background: #eee;
}

.yl-tool-btn.active,
.yl-ann-tool.active {
    background: #1a365d;
    color: #fff;
    border-color: #1a365d;
}

.yl-page-indicator {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
}

.yl-page-input {
    width: 48px;
    padding: 4px 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
}

.yl-color-select,
.yl-size-select {
    padding: 5px 8px;
    border: 1px solid #e2e0dc;
    border-radius: 6px;
    font-size: 12px;
    background: #fff;
    cursor: pointer;
}

.yl-manual-pdf-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #e2e0dc;
}

.yl-manual-pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.yl-annotation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    touch-action: none;
}

.yl-empty-state {
    padding: 30px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.yl-btn-full {
    width: 100%;
}


/* ==========================================
   COURSE TABS (Course Content / Student Workbook)
   ========================================== */
.yl-course-tabs {
    display: flex;
    gap: 0;
    background: #f7f6f3;
    border-bottom: 2px solid #e2e0dc;
    padding: 0 20px;
}

.yl-course-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    position: relative;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.yl-course-tab:hover {
    color: #333;
    background: rgba(0,0,0,0.03);
}

.yl-course-tab.active {
    color: #1a365d;
}

.yl-course-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a365d;
    border-radius: 3px 3px 0 0;
}

.yl-course-tab-panel {
    display: none;
}

.yl-course-tab-panel.active {
    display: block;
}

/* Workbook inline intro */
.yl-wb-inline-intro {
    padding: 20px 24px;
    margin: 20px 20px 0;
    background: #f9f8f6;
    border-radius: 10px;
}

.yl-wb-inline-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    margin: 0 0 6px;
}

.yl-wb-inline-intro p {
    color: #555;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.yl-workbook-inline .yl-workbook-toolbar {
    margin: 12px 20px 0;
    border-radius: 10px;
    border: 1px solid #e2e0dc;
    border-bottom: 2px solid #e2e0dc;
}

.yl-workbook-inline .yl-workbook-week-nav {
    margin: 0 20px;
    padding: 12px 0;
    border-radius: 0;
    background: transparent;
}

.yl-workbook-inline .yl-workbook-week {
    margin: 0 20px;
    padding: 0 0 30px;
    border-radius: 0 0 10px 10px;
}

/* ==========================================
   STUDENT WORKBOOK (shared styles)
   ========================================== */
.yl-workbook-app {
    max-width: 960px;
    margin: 0 auto;
}

.yl-workbook-header {
    padding: 30px 28px;
    border-radius: 12px 12px 0 0;
    color: #fff;
}

.yl-workbook-header-content {
    max-width: 720px;
}

.yl-workbook-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.yl-workbook-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7em;
    margin: 0 0 6px;
    font-weight: 700;
}

.yl-workbook-subtitle {
    margin: 0 0 12px;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.yl-workbook-tools-hint {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    opacity: 0.8;
}

/* Toolbar */
.yl-workbook-toolbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid #e2e0dc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.yl-wb-toolbar-inner {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 14px;
    flex-wrap: wrap;
}

.yl-toolbar-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

.yl-wb-tool.active {
    background: #2d3748;
    color: #fff;
    border-color: #2d3748;
}

.yl-wb-save-indicator {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
}

.yl-wb-saved {
    background: #f0fff4;
    color: #38A169;
}

.yl-wb-unsaved {
    background: #fffff0;
    color: #D69E2E;
}

/* Week Nav */
.yl-workbook-week-nav {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #f7f6f3;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.yl-wb-week-tab {
    padding: 8px 18px;
    border: 1.5px solid #e2e0dc;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.yl-wb-week-tab:hover {
    background: #f0ece6;
}

.yl-wb-week-tab.active {
    background: #2d3748;
    color: #fff;
    border-color: #2d3748;
}

/* Week Content */
.yl-workbook-week {
    padding: 0 20px 40px;
    background: #fff;
}

.yl-wb-week-header {
    padding: 20px 24px;
    margin: 20px 0;
    background: #f7f6f3;
    border-radius: 10px;
}

.yl-wb-week-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35em;
    margin: 0 0 6px;
}

.yl-wb-week-header p {
    margin: 0 0 8px;
    color: #555;
    font-size: 14px;
}

.yl-wb-week-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #777;
}

/* Sections */
.yl-wb-section {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.yl-wb-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15em;
    margin: 0 0 8px;
    color: #1a202c;
}

.yl-wb-instructions {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 16px;
}

.yl-wb-exercise-sub {
    font-size: 1em;
    margin: 20px 0 10px;
    color: #2d3748;
}

/* Vocabulary Table */
.yl-wb-vocab-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    -webkit-overflow-scrolling: touch;
}

.yl-wb-vocab-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.yl-wb-vocab-table th {
    background: #2d3748;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yl-wb-vocab-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.yl-wb-vocab-table tr:nth-child(even) {
    background: #f9f8f6;
}

.yl-wb-vocab-table tr:hover {
    background: #f0ece6;
}

.yl-wb-yoruba {
    font-size: 14px;
    color: #1a365d;
}

.yl-wb-pron {
    font-family: monospace;
    font-size: 12px;
    color: #777;
}

.yl-wb-example {
    font-size: 12.5px;
    line-height: 1.4;
}

.yl-wb-ex-en {
    color: #888;
    font-size: 12px;
}

.yl-wb-num {
    font-weight: 600;
    color: #999;
    width: 30px;
}

/* Write Areas */
.yl-wb-exercise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 700px) {
    .yl-wb-exercise-grid {
        grid-template-columns: 1fr;
    }
}

.yl-wb-exercise-item {
    background: #f9f8f6;
    border-radius: 10px;
    padding: 14px;
}

.yl-wb-exercise-prompt {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.yl-wb-q-num {
    font-weight: 700;
    color: #1a365d;
    margin-right: 6px;
}

.yl-wb-target-word {
    color: #1a365d;
    background: rgba(26, 54, 93, 0.08);
    padding: 1px 6px;
    border-radius: 4px;
}

.yl-wb-write-area {
    position: relative;
    min-height: 60px;
    border: 2px dashed #d4d0c8;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s;
}

.yl-wb-write-area:focus-within {
    border-color: #3182CE;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.yl-wb-write-large {
    min-height: 80px;
}

.yl-wb-write-xlarge {
    min-height: 160px;
}

.yl-wb-typed-input {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    font-family: 'Noto Sans Yoruba', 'DM Sans', sans-serif;
    resize: vertical;
    box-sizing: border-box;
    background: transparent;
    line-height: 1.7;
    /* Lined paper effect */
    background-image: repeating-linear-gradient(transparent, transparent 27px, #e8e5df 27px, #e8e5df 28px);
    background-position: 0 10px;
}

.yl-wb-typed-input::placeholder {
    color: #bbb;
    font-style: italic;
}

.yl-wb-typed-large {
    min-height: 80px;
}

.yl-wb-typed-xlarge {
    min-height: 160px;
}

.yl-wb-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    touch-action: none;
    cursor: crosshair;
    /* Lined paper effect for canvas too */
    background-image: repeating-linear-gradient(transparent, transparent 27px, #e8e5df 27px, #e8e5df 28px);
    background-position: 0 10px;
}

.yl-wb-canvas-large {
    min-height: 80px;
}

.yl-wb-canvas-xlarge {
    min-height: 160px;
}

/* Lined Exercise blocks */
.yl-wb-lined-exercise {
    margin: 14px 0;
    padding: 14px;
    background: #f9f8f6;
    border-radius: 10px;
}

/* Dialogue */
.yl-wb-dialogue-box {
    background: #f0f5ff;
    border: 1px solid #bee3f8;
    border-radius: 10px;
    padding: 18px;
    margin: 16px 0;
}

.yl-wb-dialogue-title {
    margin: 0 0 6px;
    font-size: 1em;
    color: #1a365d;
}

.yl-wb-dialogue-context {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px;
}

.yl-wb-dialogue-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yl-wb-dialogue-line {
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.5;
}

.yl-wb-speaker {
    color: #1a365d;
    margin-right: 6px;
}

.yl-wb-line-yr {
    color: #2d3748;
}

.yl-wb-line-en {
    color: #888;
    font-size: 12px;
    display: block;
    margin-left: 20px;
}

/* Self-Assessment */
.yl-wb-self-assessment {
    background: #fefef9;
    padding: 20px !important;
    border-radius: 10px;
    border: 1px solid #eee;
}

.yl-wb-assessment-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.yl-wb-assessment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-wrap: wrap;
}

.yl-wb-assessment-label {
    flex: 1;
    font-size: 13px;
    color: #444;
    min-width: 200px;
}

.yl-wb-rating {
    display: flex;
    gap: 6px;
}

.yl-wb-rate-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e0dc;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.yl-wb-rate-btn:hover {
    transform: scale(1.15);
    border-color: #aaa;
}

.yl-wb-rate-btn.yl-wb-rate-selected {
    border-color: #D69E2E;
    background: #FEFCBF;
    transform: scale(1.1);
}

/* Answer Key */
.yl-wb-answer-key {
    background: #f7f6f3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e0dc;
}

.yl-wb-answer-key-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.yl-wb-answer-key-header:hover {
    background: #eee;
}

.yl-wb-answer-key-header h3 {
    margin: 0;
    font-size: 1em;
}

.yl-wb-answer-toggle {
    transition: transform 0.2s;
}

.yl-wb-answer-key-body {
    display: none;
    padding: 0 18px 18px;
}

.yl-wb-answer-open .yl-wb-answer-key-body {
    display: block;
}

.yl-wb-answer-open .yl-wb-answer-toggle {
    transform: rotate(180deg);
}

.yl-wb-answer-list {
    font-size: 13px;
    line-height: 1.8;
    color: #444;
}

.yl-wb-answer-list li {
    margin-bottom: 4px;
}

/* Workbook Index */
.yl-workbook-index-header {
    padding: 30px 20px;
    text-align: center;
}

.yl-workbook-index-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    margin: 0 0 8px;
}

.yl-workbook-index-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.yl-workbook-index-grid {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.yl-wb-level-section {
    margin-bottom: 24px;
}

.yl-wb-level-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    margin: 0 0 10px;
}

.yl-wb-course-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yl-wb-course-link {
    display: block;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.yl-wb-course-link:hover {
    background: #f0ece6;
    transform: translateX(4px);
}

.yl-wb-course-link strong {
    color: #1a365d;
}

/* ==========================================
   NOTICES
   ========================================== */
.yl-notice-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: #FEFCE8;
    border: 1px solid #FDE68A;
    border-radius: 12px;
    margin: 20px 0;
}

.yl-notice-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.yl-notice-warning strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #92400E;
}

.yl-notice-warning p {
    margin: 0;
    font-size: 13px;
    color: #78350F;
}

/* ==========================================
   COURSE WORKBOOK TAB (embedded in course view)
   ========================================== */
.yl-course-workbook-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.yl-course-workbook-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .yl-manual-body {
        flex-direction: column;
        height: auto;
    }
    
    .yl-manual-sidebar {
        width: 100%;
        min-width: 100%;
        max-height: 300px;
        border-right: none;
        border-bottom: 1px solid #e2e0dc;
    }
    
    .yl-manual-main {
        min-height: 500px;
    }
    
    .yl-manual-toolbar {
        flex-wrap: wrap;
    }
    
    .yl-toolbar-annotation {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .yl-manual-header {
        padding: 18px 16px;
    }
    
    .yl-manual-title {
        font-size: 1.2em;
    }
    
    .yl-workbook-header {
        padding: 20px 16px;
    }
    
    .yl-workbook-title {
        font-size: 1.3em;
    }
    
    .yl-wb-toolbar-inner {
        padding: 6px 10px;
    }
    
    .yl-wb-assessment-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .yl-workbook-week {
        padding: 0 12px 30px;
    }
    
    .yl-wb-exercise-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .yl-workbook-toolbar,
    .yl-workbook-week-nav,
    .yl-manual-toolbar,
    .yl-manual-sidebar,
    .yl-btn,
    .yl-speak-btn,
    .yl-wb-answer-key,
    .yl-workbook-tools-hint {
        display: none !important;
    }
    
    .yl-workbook-week {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .yl-wb-write-area {
        border: 1px solid #ccc;
        min-height: 60px;
    }
    
    .yl-wb-canvas {
        display: none !important;
    }
    
    .yl-wb-typed-input {
        display: block !important;
    }
    
    .yl-manual-body {
        height: auto;
    }
}
