/* _content/LearnLanguageWEB/Components/IconButton.razor.rz.scp.css */
.icon-btn[b-xgkul90d67] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: 6px;
    background: linear-gradient(180deg, #4a7eff 0%, #2656d9 60%, #1a3fa8 100%);
    color: #fff;
    font-size: 0.875rem;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    /* 3D effect: bottom shadow simulates depth */
    box-shadow: 0 1px 0 #0f2770, 0 4px 0 #1432a0, 0 5px 6px rgba(0, 0, 0, 0.35);
    transform: translateY(0);
    transition: box-shadow 0.1s ease, transform 0.1s ease, background 0.15s ease;
}

    /* Press down on click */
    .icon-btn:active:not(:disabled)[b-xgkul90d67] {
        box-shadow: 0 1px 0 #0f2770, 0 1px 2px rgba(0, 0, 0, 0.3);
        transform: translateY(3px);
    }

    .icon-btn:hover:not(:disabled)[b-xgkul90d67] {
        background: linear-gradient(180deg, #5e8fff 0%, #3467ee 60%, #2450cc 100%);
        box-shadow: 0 1px 0 #0f2770, 0 5px 0 #1432a0, 0 7px 10px rgba(0, 0, 0, 0.4);
    }

    .icon-btn:disabled[b-xgkul90d67] {
        opacity: 0.45;
        cursor: not-allowed;
        box-shadow: none;
    }

    .icon-btn.active[b-xgkul90d67] {
        background: linear-gradient(180deg, #3467ee 0%, #1a3fa8 100%);
        box-shadow: 0 1px 0 #0f2770, 0 1px 2px rgba(0, 0, 0, 0.3);
        transform: translateY(3px);
        font-weight: 700;
    }

.icon-btn__img[b-xgkul90d67] {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    flex-shrink: 0;
}
/* _content/LearnLanguageWEB/Components/LanguageDropdown.razor.rz.scp.css */
:root[b-akagh1iu9w] {
    /* Default control width — override per-instance with inline style:
       <LanguageDropdown style="--lang-drop-width:600px" ... /> */
    --lang-drop-width: 520px;
}

/* Row that contains label + control */
.lang-drop-row[b-akagh1iu9w] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    flex-wrap: nowrap;
}

/* Keep the label compact and prevent wrapping */
.lang-drop__label[b-akagh1iu9w] {
    margin: 0;
    margin-right: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    flex: 0 0 auto;
    color: #00008B !important;
}

/* Enforce a stable width for the dropdown itself.
   Use !important to defeat parent flex constraints; prefer overriding the CSS variable instead of editing this file. */
.lang-drop[b-akagh1iu9w] {
    position: relative;
    flex: 0 0 var(--lang-drop-width) !important;
    width: var(--lang-drop-width) !important;
    min-width: 160px !important;
    max-width: 100% !important;
    user-select: none;
    box-sizing: border-box;
}

/* Backdrop when panel open */
.lang-drop__backdrop[b-akagh1iu9w] {
    position: fixed;
    inset: 0;
    z-index: 99;
}

/* Trigger fills the enforced container width */
.lang-drop__trigger[b-akagh1iu9w] {
    width: 100% !important;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem .6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: .95rem;
    text-align: left;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}

    .lang-drop__trigger:hover[b-akagh1iu9w] {
        border-color: #888;
    }

.lang-drop--open .lang-drop__trigger[b-akagh1iu9w] {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px #c5d9f8;
}

/* Flag and name layout */
.lang-drop__flag[b-akagh1iu9w] {
    width: 20px;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
}

.lang-drop__name[b-akagh1iu9w] {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.lang-drop__placeholder[b-akagh1iu9w] {
    color: #999;
}

.lang-drop__arrow[b-akagh1iu9w] {
    color: #555;
    font-size: .75rem;
    flex-shrink: 0;
}

/* Panel: place under trigger and ensure it is at least as wide as the trigger but never wider than viewport */
.lang-drop__panel[b-akagh1iu9w] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,.13);
    display: flex;
    flex-direction: column;
    min-width: var(--lang-drop-width) !important;
    max-width: calc(100vw - 16px) !important;
    box-sizing: border-box;
}

/* Search inside panel */
.lang-drop__search[b-akagh1iu9w] {
    margin: .4rem .4rem .2rem;
    padding: .35rem .5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: .875rem;
    outline: none;
}

    .lang-drop__search:focus[b-akagh1iu9w] {
        border-color: #1a73e8;
    }

.lang-drop__list[b-akagh1iu9w] {
    list-style: none;
    margin: 0;
    padding: 0 0 .25rem;
    max-height: 260px;
    overflow-y: auto;
}

.lang-drop__item[b-akagh1iu9w] {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .32rem .6rem;
    cursor: pointer;
    font-size: .9rem;
    transition: background .1s;
}

    .lang-drop__item:hover[b-akagh1iu9w] {
        background: #f0f4ff;
    }

.lang-drop__item--active[b-akagh1iu9w] {
    background: #e8f0fe;
    font-weight: 600;
}

.lang-drop__iso[b-akagh1iu9w] {
    margin-left: auto;
    color: #999;
    font-size: .78rem;
    font-family: monospace;
}

.lang-drop__empty[b-akagh1iu9w] {
    padding: .5rem .7rem;
    color: #999;
    font-size: .85rem;
    font-style: italic;
}

/* Responsive: stack label above control on narrow screens */
@media (max-width: 640px) {
    .lang-drop-row[b-akagh1iu9w] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .lang-drop[b-akagh1iu9w] {
        width: 100% !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .lang-drop__panel[b-akagh1iu9w] {
        min-width: 100% !important;
        max-width: 100% !important;
        left: 0;
    }
}
/* _content/LearnLanguageWEB/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-lxybez80eb] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f7f9fc;
}

.main-content[b-lxybez80eb] {
    flex: 1;
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 1.25rem 1rem 2rem;
}

#blazor-error-ui[b-lxybez80eb] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-lxybez80eb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/LearnLanguageWEB/Components/Layout/NavMenu.razor.rz.scp.css */
/* Brand text block � takes all remaining space and self-centres */
.brand-stack[b-k2rvx83nrs] {
    flex: 1;
    display: flex;
    flex-direction: row; /* horizontal layout */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    line-height: 1;
}

/* Single horizontal bar */
.nav-bar-inner[b-k2rvx83nrs] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 3.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 0.5rem;
    gap: 0;
}

.menu-row[b-k2rvx83nrs] {
    display: flex;
    align-items: center; /* vertically centers icon + text */
    gap: 20px; /* space between menu items */
}

.brand-icon[b-k2rvx83nrs] {
    width: 48px; /* adjust as needed */
    height: 48px;
}


    .nav-bar-inner[b-k2rvx83nrs]::-webkit-scrollbar {
        display: none;
    }

/* Small brand icon on the far left */
.brand-icon[b-k2rvx83nrs] {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 5px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.top-nav[b-k2rvx83nrs] {
    background-color: var(--header-bg, #1e293b);
    width: 100%;
}

.top-nav-inner[b-k2rvx83nrs] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    min-height: 3.5rem;
    background: #abe2fd;
}

.menu-links[b-k2rvx83nrs] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
}

.menu-link[b-k2rvx83nrs] {
    color: #2656d9;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: background-color .15s ease;
}

    .menu-link:hover[b-k2rvx83nrs] {
        background-color:blueviolet);
    }

    .menu-link.active[b-k2rvx83nrs] {
        background-color: blue;
        font-weight: 700;
    }
/* _content/LearnLanguageWEB/Components/Pages/Home.razor.rz.scp.css */
/* ==========================================================================
   1. Base Container & Layout Utilities
   ========================================================================== */
.landing-container[b-0tzt2qp7dm] {
    min-height: 100vh;
    background-color: #f8fafc; /* Soft off-white/slate backdrop */
    color: #0f172a; /* Dark slate for clear body text readability */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden; /* Added structural backup safety to prevent any horizontal page shifting */
}

.max-width-md[b-0tzt2qp7dm] {
    max-width: 64rem; /* 1024px */
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   2. Hero Header Section
   ========================================================================== */
.hero-section[b-0tzt2qp7dm] {
    max-width: 56rem; /* 896px */
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

.brand-row[b-0tzt2qp7dm] {
    display: flex;
    align-items: center; /* vertically centers icon + text */
    gap: 12px; /* space between icon and text */
}

.brand-icon[b-0tzt2qp7dm] {
    width: 48px; /* adjust as needed */
    height: 48px;
}

.version-badge[b-0tzt2qp7dm] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #0596691a;
    color: darkcyan;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.hero-title[b-0tzt2qp7dm] {
    position: relative;
    display: inline-block;
    font-size: 2rem !important;
    font-weight: 2;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Syne', system-ui, sans-serif;
    color: darkblue;
    padding: 0.6rem 1.1rem;
    border-radius: 14px;
    isolation: isolate; /* creates a new stacking context so z-index: -1 on ::before stays inside */
    text-shadow: none;
    background: none;
    filter: none;
}

    /* Blue-sky rounded background behind the title */
    .hero-title[b-0tzt2qp7dm]::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1; /* ← this was 0, covering the text */
        border-radius: 14px;
        background: linear-gradient(90deg, #e0f2fe 0%, #7dd3fc 50%, #0ea5e9 100%);
        box-shadow: 0 8px 28px rgba(59, 130, 246, 0.25);
        filter: blur(4px);
        opacity: 0.95;
    }

@media (min-width: 768px) {
    .hero-title[b-0tzt2qp7dm] {
        font-size: 3.75rem;
        padding: 0.75rem 1.5rem;
        border-radius: 16px;
    }

        .hero-title[b-0tzt2qp7dm]::before {
            filter: blur(6px);
        }
}

.hero-subtitle[b-0tzt2qp7dm] {
    font-size: 1.25rem;
    color: #1D66EB; /* Balanced slate grey for subtext */
    max-width: 42rem;
    margin: 0 auto 2rem auto;
    line-height: 1.625;
}

.hero-actions[b-0tzt2qp7dm] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions[b-0tzt2qp7dm] {
        flex-direction: row;
    }
}

/* ==========================================================================
   3. Interactive Buttons
   ========================================================================== */
.btn-primary[b-0tzt2qp7dm], .btn-secondary[b-0tzt2qp7dm], .btn-download[b-0tzt2qp7dm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary[b-0tzt2qp7dm] {
    background-color: #10b981; /* High visibility Emerald 500 */
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    gap: 0.5rem;
}

    .btn-primary:hover[b-0tzt2qp7dm] {
        background-color: #059669; /* Emerald 600 fallback on interaction */
    }

.play-icon[b-0tzt2qp7dm] {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-secondary[b-0tzt2qp7dm] {
    background-color: #ffffff; /* Crisp white button */
    color: #0f172a;
    font-weight: 500;
    border: 1px solid #cbd5e1; /* Noticeable clean border boundary */
}

    .btn-secondary:hover[b-0tzt2qp7dm] {
        background-color: blue;
    }

.btn-download[b-0tzt2qp7dm] {
    background-color: #10B981; /* Solid contrast dark call-to-action */
    color: white;
}

    .btn-download:hover[b-0tzt2qp7dm] {
        background-color: blue;
    }

/* ==========================================================================
   4. Philosophy Section & Card Grid
   ========================================================================== */
.philosophy-section[b-0tzt2qp7dm] {
    border-top: 1px solid #e2e8f0; /* Light separator border line */
    background-color: rgba(241, 245, 249, 0.6); /* Soft container tint block */
    padding: 3rem 1.5rem;
}

.grid-three-col[b-0tzt2qp7dm] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-three-col[b-0tzt2qp7dm] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card[b-0tzt2qp7dm] {
    padding: 1.5rem;
    background-color: #ffffff; /* Pure white grid elements */
    border: 1px solid #e2e8f0; /* Fine modern profile border */
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03); /* Subtle ground depth drop shadow */
}

@media (min-width: 768px) {
    .card[b-0tzt2qp7dm] {
        text-align: left;
    }
}

.card-icon[b-0tzt2qp7dm] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-title[b-0tzt2qp7dm] {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FA720A;
}

.card-text[b-0tzt2qp7dm] {
    font-size: 0.875rem;
    color: black;
    line-height: 1.625;
}

/* ==========================================================================
   5. Features Block Layout & Timed Keyframe Animation (6s Rotation Loop)
   ========================================================================== */
.features-section[b-0tzt2qp7dm] {
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.section-heading[b-0tzt2qp7dm] {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #10B981;
}

.section-subheading[b-0tzt2qp7dm] {
    color: #6152BC;
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2rem auto;
    font-size: 0.875rem;
    font-weight: 700;
}

.feature-showcase[b-0tzt2qp7dm] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.showcase-text-grid[b-0tzt2qp7dm] {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0px;
}

@media (min-width: 992px) {
    .feature-showcase[b-0tzt2qp7dm] {
        flex-direction: row;
        gap: 40px;
    }

    .showcase-text-grid[b-0tzt2qp7dm] {
        flex: 2;
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-right[b-0tzt2qp7dm] {
        flex: 1;
        min-width: 340px;
    }
}

/* Static SSR Content Blocks */
.feature-block[b-0tzt2qp7dm] {
    padding: 16px;
    border-left: 4px solid #e0e0e0;
    transition: all 0.3s ease;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .feature-block:hover[b-0tzt2qp7dm] {
        background-color: rgba(0, 0, 0, 0.01);
        border-left-color: #b8d9f5;
    }

.feature-tag[b-0tzt2qp7dm] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: #03289E;
    margin-bottom: 2px;
}

.feature-text[b-0tzt2qp7dm] {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #444;
}

/* Screenshot Display Area */
.showcase-right[b-0tzt2qp7dm] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-frame[b-0tzt2qp7dm] {
    position: relative;
    width: 100%;
    max-width: 290px;
    height: 520px;
    display: flex;
    justify-content: center;
}

@media (min-width: 480px) {
    .screenshot-frame[b-0tzt2qp7dm] {
        max-width: 340px;
        height: 600px;
    }
}

/* CSS-Only Slideshow Transition Engine */
.screenshot-img[b-0tzt2qp7dm] {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    /* Set initial hidden state */
    opacity: 0;
    transform: scale(0.98);
    /* Target 48s total animation loop */
    animation: featureSlideshow-b-0tzt2qp7dm 48s infinite ease-in-out;
}

    /* Staggered Timeline Delays (6s increments across a 48s loop) */
    .screenshot-img:nth-child(1)[b-0tzt2qp7dm] {
        animation-delay: 0s;
    }

    .screenshot-img:nth-child(2)[b-0tzt2qp7dm] {
        animation-delay: 6s;
    }

    .screenshot-img:nth-child(3)[b-0tzt2qp7dm] {
        animation-delay: 12s;
    }

    .screenshot-img:nth-child(4)[b-0tzt2qp7dm] {
        animation-delay: 18s;
    }

    .screenshot-img:nth-child(5)[b-0tzt2qp7dm] {
        animation-delay: 24s;
    }

    .screenshot-img:nth-child(6)[b-0tzt2qp7dm] {
        animation-delay: 30s;
    }

    .screenshot-img:nth-child(7)[b-0tzt2qp7dm] {
        animation-delay: 36s;
    }

    .screenshot-img:nth-child(8)[b-0tzt2qp7dm] {
        animation-delay: 42s;
    }

/* Keyframe Math for 8 Images over 48 seconds:
   Each image owns 12.5% of the total 48s timeline (exactly 6s).
   - 0% to 1.04%: Fades in smoothly over 0.5s (0.5s / 48s ≈ 1.04%).
   - 1.04% to 12.5%: Remains completely visible for 5.5s.
   - 12.5% to 13.54%: Fades out over 0.5s as the next screenshot overlays.
*/
@keyframes featureSlideshow-b-0tzt2qp7dm {
    0% {
        opacity: 0;
        transform: scale(0.98);
        z-index: 0;
    }

    1.04%, 12.5% {
        opacity: 1;
        transform: scale(1);
        z-index: 2; /* Brings active image to front layer */
    }

    13.54%, 100% {
        opacity: 0;
        transform: scale(0.98);
        z-index: 0;
    }
}


/* ==========================================================================
   6. Clean Image Mockup Framing & Unused Core Classes
   ========================================================================== */
.screenshot-container[b-0tzt2qp7dm] {
    padding: 1rem;
    border-radius: 1.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    max-width: 24rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: lightblue;
}

.phone-images[b-0tzt2qp7dm] {
    width: 500px;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

/* ==========================================================================
   7. Footer Wrap Element Blocks
   ========================================================================== */
.footer-section[b-0tzt2qp7dm] {
    border-top: 1px solid #e2e8f0; /* Segment border accent */
    padding: 4rem 1.5rem;
    background-color: #f8fafc; /* Matches soft light backdrop environment */
    text-align: center;
}

.footer-wrapper[b-0tzt2qp7dm] {
    max-width: 42rem;
    margin: 0 auto;
}

.footer-title[b-0tzt2qp7dm] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10B981;
}

.footer-text[b-0tzt2qp7dm] {
    font-size: 0.875rem;
    color: #2B0098;
    margin-bottom: 2rem;
    font-weight: 700;
}

.copyright[b-0tzt2qp7dm] {
    font-size: 0.75rem;
    color: #94a3b8; /* Soft neutral label signature info */
    margin-top: 3rem;
}
/* _content/LearnLanguageWEB/Components/Pages/SyncQr.razor.rz.scp.css */
.sync-qr-container[b-la0wadt9cw] {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: inherit;
}

.sync-qr-title[b-la0wadt9cw] {
    font-size: 1.6rem;
    margin-bottom: .25rem;
    color: #10B981;
}

.sync-qr-subtitle[b-la0wadt9cw] {
    color: #0630AA;
    margin-bottom: 1.5rem;
}

.sync-qr-form[b-la0wadt9cw] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sync-qr-row[b-la0wadt9cw] {
    gap: 0.5rem;
   
}

.sync-field[b-la0wadt9cw] {
    width: 180px; /* Fixed width for each dropdown container */
    min-width: 120px;
    max-width: 220px;
    flex: 0 0 auto; /* Prevents growing */
}

.sync-field select[b-la0wadt9cw],
.sync-field .dropdown[b-la0wadt9cw],
.sync-field .language-dropdown[b-la0wadt9cw] {
    width: 100% !important; /* Force dropdown to fill container */
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.sync-loading[b-la0wadt9cw] {
    font-size: .8rem;
    color: #888;
    font-style: italic;
}

.sync-format-hint[b-la0wadt9cw] {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: .5rem .75rem;
    font-size: .8rem;
    color: #444;
}

    .sync-format-hint pre[b-la0wadt9cw] {
        margin: .5rem 0 0;
        white-space: pre-wrap;
    }

.sync-textarea[b-la0wadt9cw] {
    width: 100%;
    padding: .6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .9rem;
    font-family: monospace;
    resize: vertical;
    box-sizing: border-box;
}

.summary[b-la0wadt9cw] {
    font-size: 20px;
    font-weight: 700;
    color: #10B981;
}

.sync-preview-count[b-la0wadt9cw] {
    color: #2e7d32;
    font-size: .9rem;
    margin: 0;
}

.sync-error[b-la0wadt9cw] {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: .5rem .75rem;
    font-size: .875rem;
}

.sync-actions[b-la0wadt9cw] {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.sync-btn-primary[b-la0wadt9cw] {
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .55rem 1.4rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background .15s;
}

    .sync-btn-primary:hover:not(:disabled)[b-la0wadt9cw] {
        background: #1558b0;
    }

    .sync-btn-primary:disabled[b-la0wadt9cw] {
        opacity: .55;
        cursor: not-allowed;
    }

.sync-btn-secondary[b-la0wadt9cw] {
    background: transparent;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: .55rem 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.sync-qr-result[b-la0wadt9cw] {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sync-qr-image[b-la0wadt9cw] {
    width: 260px;
    height: 260px;
    border: 6px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    border-radius: 8px;
    image-rendering: pixelated;
}

.sync-qr-info[b-la0wadt9cw] {
    text-align: center;
    font-size: .875rem;
    color: #444;
}

.sync-info-badge[b-la0wadt9cw] {
    display: inline-block;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin-bottom: .4rem;
}

.sync-info-direct[b-la0wadt9cw] {
    background: #e8f5e9;
    color: #2e7d32;
}

.sync-info-server[b-la0wadt9cw] {
    background: #fff8e1;
    color: #f57f17;
}

.sync-info-size[b-la0wadt9cw] {
    color: #666;
    margin: 0;
}

.sync-line-errors[b-la0wadt9cw] {
    list-style: none;
    padding: 0.5rem 0.75rem;
    margin: 0.5rem 0 0;
    border-left: 3px solid #e53e3e;
    background: #fff5f5;
    border-radius: 4px;
    font-size: 0.875rem;
}

    .sync-line-errors li[b-la0wadt9cw] {
        padding: 0.2rem 0;
        color: #c53030;
    }

.sync-line-error-num[b-la0wadt9cw] {
    font-weight: 600;
    margin-right: 0.4rem;
}

.sync-line-error-text[b-la0wadt9cw] {
    font-family: monospace;
    margin-right: 0.4rem;
}

.sync-line-error-msg[b-la0wadt9cw] {
    font-style: italic;
    opacity: 0.85;
}
