/* 330: Tastatursnarveier-modal */
.lx-shortcuts { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lx-shortcuts[hidden] { display: none; }
.lx-shortcuts-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, .72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.lx-shortcuts-panel { position: relative; width: 100%; max-width: 44rem; max-height: 80vh; overflow-y: auto; background: var(--lx-surface, #fff); border: 1px solid var(--lx-border, rgba(0,0,0,.1)); border-radius: 14px; box-shadow: 0 24px 60px rgba(0, 0, 0, .35); }
:root[data-theme="dark"] .lx-shortcuts-panel { background: #171717; border-color: rgba(255,255,255,.08); color: #fafafa; }
.lx-shortcuts-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid rgba(0,0,0,.06); }
:root[data-theme="dark"] .lx-shortcuts-header { border-bottom-color: rgba(255,255,255,.06); }
.lx-shortcuts-header h2 { margin: 0; font-size: 18px; font-weight: 600; }
.lx-shortcuts-close { background: transparent; border: 0; font-size: 24px; cursor: pointer; color: inherit; line-height: 1; padding: 0 6px; }
.lx-shortcuts-body { display: grid; grid-template-columns: 1fr; gap: 22px; padding: 22px; }
@media (min-width: 640px) { .lx-shortcuts-body { grid-template-columns: 1fr 1fr; } }
.lx-shortcuts-group h3 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #737373; margin: 0 0 10px; }
.lx-shortcuts-group dl { margin: 0; }
.lx-shortcuts-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 6px 0; font-size: 14px; }
.lx-shortcuts-row dt { display: flex; gap: 4px; }
.lx-shortcuts-row dd { margin: 0; color: #525252; flex: 1; text-align: right; }
:root[data-theme="dark"] .lx-shortcuts-row dd { color: #a3a3a3; }
.lx-shortcuts-row kbd { font-family: "JetBrains Mono", monospace; font-size: 11px; background: rgba(0,0,0,.08); border-radius: 4px; padding: 3px 7px; border-bottom: 1px solid rgba(0,0,0,.16); }
:root[data-theme="dark"] .lx-shortcuts-row kbd { background: rgba(255,255,255,.10); border-bottom-color: rgba(255,255,255,.20); }
.lx-shortcuts-mobile-hint { display: none; padding: 12px 22px; font-size: 13px; color: #737373; border-top: 1px solid rgba(0,0,0,.06); }
@media (max-width: 640px) { .lx-shortcuts-mobile-hint { display: block; } }
:root[data-theme="dark"] .lx-shortcuts-mobile-hint { border-top-color: rgba(255,255,255,.06); }
