/*
 Theme Name:   Twenty Twenty-Five Child
 Template:     twentytwentyfive
 Author:       Your Name
 Version:      1.0.0
 Text Domain:  twentytwentyfive-child
*/

/* style.css */

/* Forhindre footer på redigeringssiden */
body.page-id-144 footer {
    display: none;
}

/* ===================================================================
   LessonCreate – Header
   =================================================================== */
.lc-site-header {
    --lc-header-bg: #ffffff;
    --lc-header-text: #1a1a1a;
    --lc-header-muted: #4a5568;
    --lc-header-deep: #2a3b66;
    --lc-header-deep-hover: #1e2a47;
    --lc-header-accent: #849ccf;
    --lc-header-soft: #e0cff7;
    --lc-header-border: rgba(42, 59, 102, 0.12);
    --lc-header-shadow: 0 10px 26px rgba(42, 59, 102, 0.08);
    --lc-header-transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    margin: 0 0 clamp(16px, 2vw, 24px);
    background: var(--lc-header-bg);
    border-bottom: 0;
    box-shadow: none;
    color: var(--lc-header-text);
    position: relative;
    z-index: 100;
}

.lc-site-header,
.lc-site-header * {
    box-sizing: border-box;
}

.lc-site-header a {
    text-decoration: none;
}

.lc-header {
    width: min(1400px, 100%);
    min-height: 68px;
    margin: 0 auto;
    padding: 10px clamp(16px, 3.2vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.lc-header::after {
    content: "";
    position: absolute;
    left: clamp(16px, 3.2vw, 40px);
    right: clamp(16px, 3.2vw, 40px);
    bottom: 0;
    height: 1px;
    background: var(--lc-header-border);
}

.lc-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    min-width: 0;
    color: var(--lc-header-deep);
    font-family: var(--wp--preset--font-family--manrope, var(--wp--preset--font-family--body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif));
    font-weight: 900;
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    line-height: 1;
    letter-spacing: 0;
}

.lc-header__brand:hover,
.lc-header__brand:focus-visible {
    color: var(--lc-header-deep);
}

.lc-header__brand:focus-visible,
.lc-header__nav-link:focus-visible,
.lc-header__dropdown-link:focus-visible,
.lc-header__mobile-toggle:focus-visible,
.lc-header__mobile-link:focus-visible,
.lc-header__mobile-sublink:focus-visible {
    outline: 2px solid var(--lc-header-accent);
    outline-offset: 3px;
}

.lc-header__brand-logo {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex: 0 0 auto;
}

.lc-header__brand-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

.lc-header__brand-word {
    white-space: nowrap;
}

.lc-header__brand-word--lesson {
    color: #102033;
}

.lc-header__brand-word--create {
    color: #5f6fd6;
}

.lc-header__brand:hover .lc-header__brand-word--create,
.lc-header__brand:focus-visible .lc-header__brand-word--create {
    color: #4f5fc6;
}

.lc-header__nav {
    min-width: 0;
}

.lc-header__nav-list,
.lc-header__dropdown-list,
.lc-header__mobile-list,
.lc-header__mobile-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-header__nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.lc-header__nav-item {
    position: relative;
}

.lc-header__nav-link,
.lc-header__dropdown-link,
.lc-header__mobile-link,
.lc-header__mobile-sublink {
    color: var(--lc-header-muted);
    transition:
        color var(--lc-header-transition),
        background-color var(--lc-header-transition),
        border-color var(--lc-header-transition),
        box-shadow var(--lc-header-transition),
        transform var(--lc-header-transition);
}

.lc-header__nav-link {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.lc-header__nav-link.lc-header__nav-link--priority {
    position: relative;
    color: var(--lc-header-deep);
    font-weight: 800;
}

.lc-header__nav-link.lc-header__nav-link--priority::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: rgba(132, 156, 207, 0.55);
}

.lc-header__nav-link.lc-header__nav-link--subscription::after {
    background: rgba(224, 207, 247, 0.9);
}

.lc-header__nav-link:hover,
.lc-header__nav-link:focus-visible,
.lc-header__nav-item.is-active > .lc-header__nav-link {
    color: var(--lc-header-deep);
    background: rgba(132, 156, 207, 0.12);
}

.lc-header__nav-link[aria-current="page"] {
    color: var(--lc-header-deep);
    background: rgba(42, 59, 102, 0.08);
}

.lc-header__nav-link--cta {
    padding: 0 16px;
    color: #fff;
    background: var(--lc-header-deep);
    box-shadow: 0 8px 18px rgba(42, 59, 102, 0.2);
}

.lc-header__nav-item.is-active > .lc-header__nav-link--cta,
.lc-header__nav-link--cta:hover,
.lc-header__nav-link--cta:focus-visible,
.lc-header__nav-link--cta[aria-current="page"] {
    color: #fff;
    background: var(--lc-header-deep-hover);
    box-shadow: 0 10px 22px rgba(42, 59, 102, 0.24);
    transform: translateY(-1px);
}

.lc-header__nav-link--login {
    padding: 0 16px;
    color: #fff;
    background: var(--lc-header-deep);
    box-shadow: 0 8px 18px rgba(42, 59, 102, 0.2);
}

.lc-header__nav-item.is-active > .lc-header__nav-link--login,
.lc-header__nav-link--login:hover,
.lc-header__nav-link--login:focus-visible,
.lc-header__nav-link--login[aria-current="page"] {
    color: #fff;
    background: var(--lc-header-deep-hover);
    box-shadow: 0 10px 22px rgba(42, 59, 102, 0.24);
    transform: translateY(-1px);
}

.lc-header__nav-link--icon-only {
    width: 38px;
    padding: 0;
    border-radius: 999px;
}

.lc-header__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.lc-header__icon--chevron {
    width: 15px;
    height: 15px;
    transition: transform var(--lc-header-transition);
}

.lc-header__nav-item--has-children:hover .lc-header__icon--chevron,
.lc-header__nav-item--has-children:focus-within .lc-header__icon--chevron {
    transform: rotate(180deg);
}

.lc-header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition:
        opacity var(--lc-header-transition),
        visibility var(--lc-header-transition),
        transform var(--lc-header-transition);
}

.lc-header__nav-item:hover > .lc-header__dropdown,
.lc-header__nav-item:focus-within > .lc-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lc-header__dropdown-list {
    padding: 8px;
    border: 1px solid var(--lc-header-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--lc-header-shadow);
}

.lc-header__dropdown-link {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--lc-header-muted);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;
}

.lc-header__dropdown-link:hover,
.lc-header__dropdown-link:focus-visible,
.lc-header__dropdown-link[aria-current="page"] {
    color: var(--lc-header-deep);
    background: rgba(132, 156, 207, 0.13);
}

.lc-header__mobile-menu {
    display: none;
    position: relative;
    flex: 0 0 auto;
}

.lc-header__mobile-toggle {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--lc-header-border);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lc-header-deep);
    background: #fff;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.lc-header__mobile-toggle::-webkit-details-marker {
    display: none;
}

.lc-header__mobile-menu[open] .lc-header__mobile-toggle,
.lc-header__mobile-toggle:hover {
    background: rgba(132, 156, 207, 0.12);
    border-color: rgba(42, 59, 102, 0.2);
}

.lc-header__mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100dvh - 88px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--lc-header-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--lc-header-shadow);
}

.lc-header__mobile-list {
    display: grid;
    gap: 3px;
}

.lc-header__mobile-item {
    min-width: 0;
}

.lc-header__mobile-link,
.lc-header__mobile-sublink {
    width: 100%;
    min-height: 42px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.2;
}

.lc-header__mobile-link {
    padding: 10px 12px;
    color: var(--lc-header-text);
    font-size: 0.98rem;
    font-weight: 700;
}

.lc-header__mobile-sublink {
    padding: 9px 12px 9px 28px;
    color: var(--lc-header-muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.lc-header__mobile-link:hover,
.lc-header__mobile-link:focus-visible,
.lc-header__mobile-link[aria-current="page"],
.lc-header__mobile-sublink:hover,
.lc-header__mobile-sublink:focus-visible,
.lc-header__mobile-sublink[aria-current="page"] {
    color: var(--lc-header-deep);
    background: rgba(132, 156, 207, 0.13);
}

.lc-header__mobile-link.lc-header__nav-link--priority {
    color: var(--lc-header-deep);
    font-weight: 800;
}

.lc-header__mobile-link.lc-header__nav-link--cta {
    justify-content: center;
    color: #fff;
    background: var(--lc-header-deep);
}

.lc-header__mobile-link.lc-header__nav-link--cta:hover,
.lc-header__mobile-link.lc-header__nav-link--cta:focus-visible,
.lc-header__mobile-link.lc-header__nav-link--cta[aria-current="page"] {
    color: #fff;
    background: var(--lc-header-deep-hover);
}

.lc-header__mobile-link.lc-header__nav-link--login {
    justify-content: center;
    color: #fff;
    background: var(--lc-header-deep);
}

.lc-header__mobile-link.lc-header__nav-link--login:hover,
.lc-header__mobile-link.lc-header__nav-link--login:focus-visible,
.lc-header__mobile-link.lc-header__nav-link--login[aria-current="page"] {
    color: #fff;
    background: var(--lc-header-deep-hover);
}

.lc-header__mobile-sublist {
    margin: 0 0 6px;
    padding: 0 0 0 8px;
    border-left: 2px solid rgba(132, 156, 207, 0.22);
}

@media (max-width: 1240px) {
    .lc-header {
        gap: 14px;
    }

    .lc-header__nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 0.9rem;
    }

    .lc-header__nav-link--cta {
        padding-left: 13px;
        padding-right: 13px;
    }

    .lc-header__nav-link--login {
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media (max-width: 1180px) {
    .lc-header {
        min-height: 62px;
        padding: 9px 16px;
    }

    .lc-header__nav {
        display: none;
    }

    .lc-header__mobile-menu {
        display: block;
    }
}

@media (max-width: 420px) {
    .lc-header__brand {
        font-size: 1.28rem;
    }

    .lc-header__brand-logo {
        width: 32px;
        height: 32px;
    }

    .lc-header__mobile-toggle span {
        display: none;
    }

    .lc-header__mobile-toggle {
        width: 40px;
        padding: 0;
        justify-content: center;
    }
}

/* ===================================================================
   LessonCreate – Footer (matcher forsidens farver, fuld bredde / stakket)
   =================================================================== */
.lc-site-footer {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #1e2a47;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    overflow: hidden;
}

.lc-site-footer::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(224, 207, 247, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.lc-footer {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
}

.lc-footer__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    text-align: center;
}

/* Brede sider: brug bredden – brand, nav og firma i én række */
@media (min-width: 768px) {
    .lc-footer__inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 1.5rem 2rem;
    }

    .lc-footer__brand-block {
        flex: 0 0 auto;
    }

    .lc-footer__nav {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 200px;
    }

    .lc-footer__company-block {
        flex: 0 0 auto;
        text-align: right;
    }
}

/* Meget brede sider: mere luft mellem blokkene */
@media (min-width: 1100px) {
    .lc-footer__inner {
        gap: 2rem 3rem;
    }
}

.lc-footer__brand {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.lc-footer__credit {
    margin: 0.25rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.lc-footer__credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.lc-footer__credit a:hover {
    color: #fff;
}

.lc-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.5rem;
    font-size: 0.9375rem;
}

.lc-footer__nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lc-footer__nav a:hover {
    color: #fff;
}

.lc-footer__sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.15rem;
    user-select: none;
}

.lc-footer__company {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.lc-footer__company strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

strong {
    font-weight: bold;
}

b {
    font-weight: bold;
}

/* Modal: AI-ændringer – Luk-knap */
.ai-change-summary-modal__close-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1e3a5f;
    background: #f0f4f8;
    border: 1px solid #c5d0de;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ai-change-summary-modal__close-btn:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #0f172a;
}
.ai-change-summary-modal__close-btn:focus {
    outline: 2px solid #1e3a5f;
    outline-offset: 2px;
}

/* Start lektion-knap (intro) */
.btn-start-lesson {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2ecc71;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.btn-start-lesson:hover {
    background: #27ae60;
}
.btn-start-lesson:focus {
    outline: 2px solid #2ecc71;
    outline-offset: 2px;
}

/* Modal ×-luk-knap (AI-edit + AI-ændringer) */
.modal-close-x {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 4px;
    transition: color 0.15s ease;
}
.modal-close-x:hover {
    color: #1e3a5f;
}
.modal-close-x:focus {
    outline: 2px solid #1e3a5f;
    outline-offset: 2px;
}

/* Modal: Lav ændringer med AI – knapper */
.ai-edit-modal__submit-btn {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: #27ae60;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.ai-edit-modal__submit-btn:hover {
    background: #219a52;
}
.ai-edit-modal__submit-btn:focus {
    outline: 2px solid #27ae60;
    outline-offset: 2px;
}

.ai-edit-modal__cancel-btn {
    margin-left: 10px;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1e3a5f;
    background: #f0f4f8;
    border: 1px solid #c5d0de;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ai-edit-modal__cancel-btn:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #0f172a;
}
.ai-edit-modal__cancel-btn:focus {
    outline: 2px solid #1e3a5f;
    outline-offset: 2px;
}

/* Modal: AI-adgang kræver Standard/Plus */
.lc-ai-access-modal-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.lc-ai-access-modal-dialog {
    background: #fff;
    width: 90%;
    max-width: 560px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

.lc-ai-access-modal-close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1;
    color: #555;
    padding: 0;
}

.lc-ai-access-modal-close-icon:hover {
    background: #e0e0e0;
    color: #333;
}

.lc-ai-access-modal-dialog h2 {
    margin: 0 0 12px 0;
    padding: 0;
    border-bottom: none;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
}

.lc-ai-access-modal-dialog p {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.lc-ai-access-modal-dialog #aiAccessModalSubscriptionLink {
    color: #2a3b66;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 59, 102, 0.35);
}

.lc-ai-access-modal-dialog #aiAccessModalSubscriptionLink:hover {
    border-bottom-color: rgba(30, 42, 71, 0.7);
}

.lc-ai-access-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.lc-ai-access-modal-actions .ai-edit-modal__cancel-btn {
    margin-left: 0;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    background-color: #f5f5f5;
    color: #333;
}

.lc-ai-access-modal-actions .ai-edit-modal__cancel-btn:hover {
    background-color: #e8e8e8;
    border-color: #d0d0d0;
    color: #333;
}

.lc-ai-access-modal-trial-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #2ecc71;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.lc-ai-access-modal-trial-btn:hover {
    background: #27ae60;
}

.lc-ai-access-modal-trial-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.lc-ai-access-modal-status {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.35;
}

.lc-ai-access-modal-status[hidden] {
    display: none;
}

.lc-ai-access-modal-status.is-error {
    background: #fff1f2;
    color: #9f1239;
}

.lc-ai-access-modal-status.is-success {
    background: #ecfdf3;
    color: #166534;
}

/* Login modal */
body.lc-login-modal-open {
    overflow: hidden;
}

.lc-login-modal-page {
    margin: 0;
    background: #ffffff;
}

.lc-login-modal-page__main {
    min-height: 100dvh;
    padding: clamp(20px, 3vw, 32px) 0 12px;
    box-sizing: border-box;
}

.lc-login-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.62);
    box-sizing: border-box;
}

.lc-login-modal.is-visible {
    display: flex;
}

.lc-login-modal__dialog {
    position: relative;
    width: min(960px, 100%);
    height: min(90vh, 860px);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.lc-login-modal__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
    display: block;
}

.lc-login-modal__loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: #ffffff;
    text-align: center;
    z-index: 1;
}

.lc-login-modal__dialog.is-loading .lc-login-modal__loading {
    display: flex;
}

.lc-login-modal__dialog.is-loading .lc-login-modal__iframe {
    visibility: hidden;
}

.lc-login-modal__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(15, 23, 42, 0.2);
    border-top-color: #0f172a;
    border-radius: 50%;
    animation: lc-login-modal-spin 0.8s linear infinite;
}

.lc-login-modal__loading-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: #1f2937;
}

@keyframes lc-login-modal-spin {
    to {
        transform: rotate(360deg);
    }
}

.lc-login-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.lc-login-modal__close:hover {
    background: rgba(15, 23, 42, 0.96);
}

.lc-login-modal__close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

@media (max-width: 800px) {
    .lc-login-modal {
        padding: 0;
    }

    .lc-login-modal__dialog {
        width: 100%;
        height: 100dvh;
        border-radius: 0;
    }

    .lc-login-modal__close {
        top: 8px;
        right: 8px;
    }

    .lc-login-modal-page__main {
        padding: 18px 0 10px;
    }
}
