/* Figma session expired popup — node 24467:80671 */

.levi-session-expired[hidden] {
    display: none;
}

.levi-session-expired {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.levi-session-expired__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, 0.45);
}

.levi-session-expired__panel {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 356px;
    padding: 24px;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.levi-session-expired__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.levi-session-expired__icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: #c41230;
}

.levi-session-expired__icon svg {
    display: block;
    width: 45px;
    height: 45px;
}

.levi-session-expired__copy {
    min-width: 0;
    padding-top: 2px;
}

.levi-session-expired__title {
    margin: 0 0 4px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #414651;
}

.levi-session-expired__message {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #414651;
}

.levi-session-expired__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.levi-session-expired__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 107px;
    height: 36px;
    padding: 0 14px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    background: #c41230;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.05),
        inset 0 0 0 1px rgba(10, 13, 18, 0.18),
        inset 0 -2px 0 rgba(10, 13, 18, 0.05);
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.levi-session-expired__btn:hover {
    background: #a30f28;
}

.levi-session-expired__btn:focus-visible {
    outline: 2px solid rgba(196, 18, 48, 0.35);
    outline-offset: 2px;
}

body.levi-session-expired-open {
    overflow: hidden;
}
