:root {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --text: #1d1d1f;
    --text-muted: #86868b;
    --border: #d2d2d7;
    --header-bg: #1d1d1f;
    --header-text: #f5f5f7;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --sidebar-width: 240px;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.app-body { min-height: 100vh; }

.app-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 52px;
    background: var(--header-bg);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.25rem;
}

.brand {
    color: var(--header-text);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sidebar-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.sidebar-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--header-text);
    margin: 4px 0;
}

.app-shell {
    display: flex;
    padding-top: 52px;
    min-height: 100vh;
}

.app-sidebar {
    position: fixed;
    top: 52px; left: 0; bottom: 0;
    width: var(--sidebar-width);
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    z-index: 900;
    transition: transform .25s ease;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    color: var(--text);
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: background .15s;
}

.sidebar-nav .nav-link:hover {
    background: var(--bg);
}

.sidebar-nav .nav-link.active {
    background: var(--bg);
    border-left-color: var(--accent);
    color: var(--accent);
}

.nav-icon {
    width: 1.25rem;
    text-align: center;
    opacity: .7;
}

.app-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 2rem 2.5rem;
    max-width: 1200px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 .25rem;
}

.page-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.card-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.stat-card .stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: .875rem;
    margin-top: .5rem;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 980px;
    padding: .625rem 1.25rem;
    font-weight: 500;
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline-dark, .btn-outline-secondary {
    border-radius: 980px;
    padding: .625rem 1.25rem;
    font-weight: 500;
}

.btn-lg-stage {
    padding: .875rem 1.5rem;
    font-size: 1rem;
    border-radius: 980px;
    min-width: 120px;
}

.form-control, .form-select {
    border-radius: 8px;
    border-color: var(--border);
    padding: .625rem .875rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}

.table { font-size: .9375rem; }
.table thead th {
    font-weight: 600;
    color: var(--text-muted);
    border-bottom-width: 1px;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.song-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.song-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: box-shadow .15s;
}
.song-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }

.song-card .song-title {
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: .25rem;
}

.song-card .song-artist {
    color: var(--text-muted);
    font-size: .875rem;
}

.badge-cat {
    display: inline-block;
    background: var(--bg);
    color: var(--text-muted);
    font-size: .75rem;
    padding: .25rem .625rem;
    border-radius: 980px;
    margin-top: .75rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: .4;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.lyrics-block {
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.8;
    font-size: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.chords-block {
    white-space: pre-wrap;
    font-family: "SF Mono", Consolas, monospace;
    font-size: .875rem;
    background: #fafafa;
    border-radius: var(--radius);
    padding: 1rem;
    color: var(--text-muted);
}

/* Akorlu söz — açık tema (detay sayfası) */
.chord-preview-block .chord-name {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85em;
}

.chord-preview-block .lyric-text {
    color: var(--text);
}

.chord-preview-block .section-label-block,
.chord-preview-block .section-label {
    color: var(--text-muted);
}

.chord-preview-block .chord-segments {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.chord-preview-block .chord-segment {
    display: inline-flex;
    flex-direction: column;
    margin-right: 0.15em;
    margin-bottom: 0.35rem;
}

.chord-preview-block .chord-lyric-line {
    margin-bottom: 0.5rem;
}

/* Setlist builder */
.setlist-builder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .setlist-builder { grid-template-columns: 1fr; }
}

.song-pool, .setlist-selected {
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

.pool-item, .selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: .5rem;
    background: var(--surface);
    cursor: grab;
}

.selected-item { cursor: grab; }
.selected-item.dragging { opacity: .5; }

.selected-item .item-meta { flex: 1; }
.selected-item .speed-input {
    width: 60px;
    margin: 0 .5rem;
}

/* Stage mode */
.stage-body {
    background: #000;
    color: #f5f5f7;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.stage-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
}

/* 1. Bölüm — arama + setlist seçici */
.stage-header-search {
    flex-shrink: 0;
    background: rgba(0,0,0,.92);
    border-bottom: 1px solid #2c2c2e;
    padding: .5rem .75rem;
}

.stage-search-row {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.stage-search-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.stage-setlist-select {
    flex-shrink: 0;
    width: min(38vw, 148px);
    max-width: 148px;
    padding: .625rem .5rem;
    font-size: .8125rem;
    border: 1px solid #444;
    border-radius: 10px;
    background: #1c1c1e;
    color: #f5f5f7;
    min-height: 44px;
    outline: none;
    cursor: pointer;
}

.stage-setlist-select:focus {
    border-color: var(--accent);
}

.stage-topbar {
    display: none;
}

.stage-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    gap: .75rem;
}

.stage-search-input {
    width: 100%;
    padding: .875rem 1rem;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 12px;
    background: #1c1c1e;
    color: #f5f5f7;
    outline: none;
    min-height: 48px;
}

.stage-search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,113,227,.25);
}

.stage-search-input::placeholder {
    color: #636366;
}

.stage-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    max-height: min(50vh, 320px);
    overflow-y: auto;
    background: #1c1c1e;
    border: 1px solid #444;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    z-index: 200;
    -webkit-overflow-scrolling: touch;
}

.stage-search-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.125rem;
    border: none;
    border-bottom: 1px solid #2c2c2e;
    background: transparent;
    color: #f5f5f7;
    cursor: pointer;
    min-height: 56px;
}

.stage-search-item:last-child {
    border-bottom: none;
}

.stage-search-item:active,
.stage-search-item:hover {
    background: #2c2c2e;
}

.stage-search-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.stage-search-item-meta {
    font-size: .8125rem;
    color: #86868b;
}

.stage-search-badge {
    display: inline-block;
    margin-top: .375rem;
    font-size: .75rem;
    padding: .2rem .625rem;
    border-radius: 980px;
    background: #3a3a3c;
    color: #aeaeb2;
}

.stage-search-badge-add {
    background: rgba(0,113,227,.2);
    color: #64b5ff;
}

.stage-search-item.is-in-setlist .stage-search-badge {
    background: rgba(255,149,0,.15);
    color: #ffb340;
}

.stage-search-empty {
    padding: 1rem 1.125rem;
    color: #86868b;
    font-size: .9375rem;
}

.stage-toast {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    padding: .75rem 1rem;
    border-radius: 10px;
    font-size: .875rem;
    z-index: 210;
    text-align: center;
}

.stage-toast-success {
    background: rgba(48,209,88,.15);
    color: #30d158;
    border: 1px solid rgba(48,209,88,.3);
}

.stage-toast-error {
    background: rgba(255,69,58,.15);
    color: #ff6961;
    border: 1px solid rgba(255,69,58,.3);
}

.stage-exit-btn {
    color: #f5f5f7;
    text-decoration: none;
    padding: .5rem .75rem;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: .9375rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.stage-exit-btn:hover {
    background: #2c2c2e;
    color: #f5f5f7;
}

/* 3. Bölüm — şarkı adı + ton */
.stage-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .625rem;
    padding: .35rem .875rem;
    background: rgba(0,0,0,.92);
    border-bottom: 1px solid #2c2c2e;
    flex-shrink: 0;
    min-height: 40px;
}

.stage-title-bar .stage-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 38%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stage-title-meta {
    display: flex;
    align-items: center;
    gap: .625rem;
    flex: 1;
    min-width: 0;
}

.stage-title-meta .stage-artist {
    font-size: .75rem;
    color: #86868b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.stage-order {
    font-size: .6875rem;
    color: #636366;
    flex-shrink: 0;
    white-space: nowrap;
    padding-left: .25rem;
    border-left: 1px solid #3a3a3c;
}

.stage-song-info .stage-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.stage-song-info .stage-artist {
    font-size: .875rem;
    color: #86868b;
}

.stage-song-info .stage-artist {
    font-size: .875rem;
    color: #86868b;
}

/* 2. Bölüm — kaydırmalı şarkı listesi */
.stage-setlist-strip-wrap {
    flex-shrink: 0;
    padding: .375rem 0 .5rem;
    border-bottom: 1px solid #2c2c2e;
    background: rgba(0,0,0,.92);
}

.stage-setlist-strip-label {
    display: none;
}

.stage-setlist-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 1rem;
    min-height: 52px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.stage-setlist-chip {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 100px;
    max-width: 160px;
    padding: 0.625rem 0.875rem;
    border: 1px solid #444;
    border-radius: 10px;
    background: #1c1c1e;
    color: #f5f5f7;
    cursor: pointer;
    text-align: left;
    scroll-snap-align: start;
}

.stage-setlist-chip.active {
    border-color: var(--accent);
    background: rgba(0, 113, 227, 0.2);
}

.stage-setlist-chip .chip-num {
    font-size: 0.6875rem;
    color: #86868b;
    margin-bottom: 0.15rem;
}

.stage-setlist-chip .chip-title {
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.stage-empty-msg {
    text-align: center;
    color: #86868b;
    padding: 3rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.stage-main {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.stage-lyrics-wrap {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.stage-lyrics {
    padding: 1rem 1.25rem 30vh;
    line-height: 1.7;
    transition: font-size .2s;
    color: #f5f5f7;
    white-space: pre-wrap;
}

.stage-lyrics .lyric-text {
    color: #f5f5f7;
}

/* Akorlu söz */
.chord-sheet {
    max-width: 100%;
}

.section-label-block {
    color: #86868b;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 1.5rem 0 0.75rem;
}

.chord-lyric-line {
    margin-bottom: 0.75rem;
}

.chord-segments {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0;
}

.chord-segment {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0.15em;
    vertical-align: bottom;
}

.chord-name {
    color: #64b5ff;
    font-weight: 700;
    font-size: 0.72em;
    line-height: 1.2;
    min-height: 1.2em;
    white-space: nowrap;
}

.chord-name-empty {
    visibility: hidden;
}

.lyric-text {
    color: #f5f5f7;
    white-space: pre;
}

.chord-plain-line {
    margin-bottom: 0.5rem;
    white-space: pre-wrap;
}

.chord-line-spacer {
    height: 0.5rem;
}

.section-in-line .section-label {
    color: #86868b;
    font-size: 0.7em;
    font-weight: 600;
}

/* Ton aracı — şarkı adı satırının sağında */
.stage-transpose-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: none;
    flex-shrink: 0;
}

.stage-transpose-group {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.stage-transpose-label {
    font-size: 0.6875rem;
    color: #86868b;
    margin-right: 0.15rem;
}

.stage-transpose-btn {
    background: #2c2c2e;
    color: #f5f5f7;
    border: 1px solid #444;
    border-radius: 7px;
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
    cursor: pointer;
    flex-shrink: 0;
}

.stage-transpose-btn:active {
    background: var(--accent);
    border-color: var(--accent);
}

.stage-key-display {
    min-width: 44px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8125rem;
    color: #64b5ff;
}

.stage-key-select {
    width: 92px;
    min-width: 84px;
    max-width: 100px;
    padding: 0.25rem 0.35rem;
    font-size: 0.6875rem;
    border: 1px solid #444;
    border-radius: 7px;
    background: #1c1c1e;
    color: #f5f5f7;
    min-height: 30px;
}

.stage-transpose-reset {
    background: transparent;
    color: #86868b;
    border: 1px solid #444;
    border-radius: 980px;
    padding: 0.2rem 0.45rem;
    font-size: 0.8125rem;
    cursor: pointer;
    min-height: 30px;
    min-width: 30px;
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 720px) {
    .stage-title-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 0.2rem 0.35rem;
        padding: 0.4rem 0.75rem;
    }

    .stage-title-bar .stage-title {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
        font-size: 0.875rem;
    }

    .stage-transpose-bar {
        grid-column: 2;
        grid-row: 1;
        width: auto;
        justify-self: end;
        flex-wrap: nowrap;
        gap: 0.2rem;
        padding: 0;
        border: none;
    }

    .stage-title-meta {
        grid-column: 1 / -1;
        grid-row: 2;
        gap: 0.35rem;
    }

    .stage-title-meta .stage-artist {
        font-size: 0.6875rem;
    }

    .stage-order {
        font-size: 0.6875rem;
        border-left: none;
        padding-left: 0;
    }

    .stage-transpose-label {
        display: none;
    }

    .stage-transpose-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }

    .stage-key-display {
        min-width: 36px;
        font-size: 0.75rem;
    }

    .stage-key-select {
        width: 52px;
        min-width: 52px;
        max-width: 56px;
        padding: 0.15rem 0.2rem;
        font-size: 0.625rem;
        min-height: 28px;
    }

    .stage-transpose-reset {
        min-height: 28px;
        min-width: 28px;
        padding: 0;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .stage-search-row {
        flex-wrap: wrap;
    }

    .stage-setlist-select {
        width: calc(100% - 52px);
        max-width: none;
        flex: 1;
    }

    .stage-exit-btn {
        order: 2;
    }
}

.stage-controls {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .75rem 1rem;
    padding-bottom: max(.75rem, env(safe-area-inset-bottom));
    background: rgba(0,0,0,.95);
    border-top: 1px solid #333;
    justify-content: center;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 50;
}

.stage-controls-row {
    display: contents;
}

@media (min-width: 721px) {
    .stage-controls-nav,
    .stage-controls-tools {
        display: contents;
    }
}

@media (max-width: 720px) {
    .stage-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        padding: 0.5rem 0.75rem;
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    }

    .stage-controls-nav,
    .stage-controls-tools {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
    }

    .stage-controls-nav {
        padding-bottom: 0.35rem;
        border-bottom: 1px solid #2c2c2e;
        justify-content: space-between;
    }

    .stage-controls-nav button {
        flex: 1 1 auto;
        min-width: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.8125rem;
    }

    .stage-controls-tools {
        padding-top: 0.1rem;
        justify-content: space-between;
    }

    .stage-tools-inline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        flex: 1;
        min-width: 0;
    }

    .stage-music-btn {
        min-width: 44px !important;
        width: 44px;
        padding-left: 0;
        padding-right: 0;
        font-weight: 700;
    }

    .stage-speed-display {
        font-size: 0.8125rem;
        padding: 0;
        gap: 0.35rem;
    }
}

.stage-controls button {
    background: #2c2c2e;
    color: #f5f5f7;
    border: 1px solid #444;
    border-radius: 980px;
    padding: .625rem 1rem;
    font-size: .875rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.stage-controls button:hover { background: #3a3a3c; }
.stage-controls button.active { background: var(--accent); border-color: var(--accent); }

.stage-music-btn {
    min-width: 100px !important;
    font-weight: 600;
}

.stage-tools-inline {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.stage-music-btn.stage-music-disabled,
.stage-music-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.stage-speed-display {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #86868b;
    font-size: .875rem;
    padding: 0 .25rem;
}

.stage-select-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: var(--bg);
    color: var(--text);
}

.setlist-picker {
    width: 100%;
    max-width: 480px;
}

.setlist-picker-item {
    display: block;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow .15s;
}
.setlist-picker-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    color: var(--text);
}

/* Print view */
@media print {
    .no-print { display: none !important; }
    .app-sidebar, .app-header { display: none !important; }
    .app-main { margin: 0; padding: 0; max-width: none; }
}

@media (max-width: 991px) {
    .app-sidebar {
        transform: translateX(-100%);
    }
    .app-sidebar.open {
        transform: translateX(0);
    }
    .app-main {
        margin-left: 0;
        padding: 1.25rem;
    }
}

.favorite-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #d2d2d7;
    padding: 0;
}
.favorite-btn.active { color: #ff9500; }

.alert { border-radius: var(--radius); border: none; }

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
}
.list-link:last-child { border-bottom: none; }
.list-link:hover { color: var(--accent); }
