:root {
    color-scheme: dark;
    --bg: #050708;
    --bg-soft: #0a0e10;
    --panel: rgba(13, 18, 20, 0.86);
    --panel-strong: #101719;
    --line: rgba(127, 255, 212, 0.14);
    --line-strong: rgba(88, 255, 180, 0.35);
    --text: #eefcf6;
    --muted: #8ca69c;
    --neon: #62ffad;
    --cyan: #51e7ff;
    --danger: #ff687d;
    --warning: #ffc85c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius: 20px;
    --sidebar-width: 250px;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 10%, rgba(81, 231, 255, 0.08), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(98, 255, 173, 0.07), transparent 34%),
        linear-gradient(135deg, #040607, #080d0f 50%, #030506);
    color: var(--text);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    background: rgba(3, 7, 8, 0.75);
    color: var(--text);
    padding: 14px 16px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

input:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(98, 255, 173, 0.1);
    background: #080d0f;
}

input::placeholder {
    color: #53665f;
}

label {
    color: #d8eee5;
    font-weight: 700;
    font-size: 0.9rem;
}

small,
.muted {
    color: var(--muted);
}

.glass-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(17, 24, 26, 0.93), rgba(7, 11, 12, 0.9));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--neon);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.brand-mark {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(98, 255, 173, 0.08);
    color: var(--neon);
    box-shadow: 0 0 30px rgba(98, 255, 173, 0.12);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.45rem;
    font-weight: 800;
}

.brand-mark.small {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1rem;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.button-primary {
    border-color: rgba(98, 255, 173, 0.45);
    background: linear-gradient(135deg, #71ffb8, #42e999);
    color: #02150b;
    box-shadow: 0 14px 35px rgba(73, 255, 164, 0.18);
}

.button-primary:hover:not(:disabled) {
    box-shadow: 0 16px 42px rgba(73, 255, 164, 0.28);
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.button-full {
    width: 100%;
}

.button-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(2, 21, 11, 0.3);
    border-top-color: #02150b;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Login */

.login-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.login-shell {
    width: min(100%, 460px);
}

.login-card {
    padding: clamp(28px, 5vw, 48px);
}

.login-card h1 {
    margin: 22px 0 8px;
    font-size: clamp(2rem, 7vw, 3rem);
    letter-spacing: -0.055em;
}

.auth-form {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.auth-form .button {
    margin-top: 10px;
}

/* Dashboard */

.app-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 10;
    display: flex;
    width: var(--sidebar-width);
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line);
    background: rgba(4, 8, 9, 0.9);
    padding: 24px 18px;
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand strong {
    display: block;
    font-size: 0.96rem;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
}

.sidebar-nav {
    display: grid;
    gap: 8px;
    margin-top: 48px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    padding: 12px;
    text-align: left;
}

.nav-item span {
    color: var(--neon);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.68rem;
}

.nav-item:hover,
.nav-item.active {
    border-color: var(--line);
    background: rgba(98, 255, 173, 0.055);
    color: var(--text);
}

.sidebar-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 12px var(--neon);
}

.main-column {
    min-width: 0;
    grid-column: 2;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 9, 0.78);
    padding: 18px clamp(20px, 4vw, 52px);
    backdrop-filter: blur(18px);
}

.topbar h1 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    letter-spacing: -0.035em;
}

.content {
    display: grid;
    gap: 22px;
    padding: 30px clamp(20px, 4vw, 52px) 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.stat-card::after {
    position: absolute;
    right: -24px;
    bottom: -46px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "";
}

.stat-card span {
    color: var(--muted);
    font-size: 0.8rem;
}

.stat-card strong {
    display: block;
    margin-top: 8px;
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.8rem;
}

.workspace-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    scroll-margin-top: 120px;
}

.form-panel,
.result-panel,
.history-panel {
    padding: clamp(20px, 3vw, 30px);
}

.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.section-heading h2 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: -0.025em;
}

.terminal-badge,
.source-badge,
.table-badge {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    padding: 6px 9px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.source-badge[data-source="gemini"],
.table-badge[data-source="gemini"] {
    border-color: rgba(81, 231, 255, 0.38);
    color: var(--cyan);
}

.source-badge[data-source="cache"],
.table-badge[data-source="cache"] {
    border-color: rgba(98, 255, 173, 0.38);
    color: var(--neon);
}

.source-badge[data-source="fallback"],
.table-badge[data-source="fallback"] {
    border-color: rgba(255, 200, 92, 0.38);
    color: var(--warning);
}

.field {
    display: grid;
    gap: 9px;
    margin-bottom: 22px;
}

.field small {
    font-size: 0.76rem;
    line-height: 1.5;
}

.field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.text-button,
.copy-button,
.remove-url {
    border: 0;
    background: transparent;
    color: var(--neon);
    font-size: 0.78rem;
    font-weight: 800;
}

.url-fields {
    display: grid;
    gap: 10px;
}

.url-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.url-row > span {
    color: #5b746a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
}

.remove-url {
    width: 34px;
    height: 34px;
    color: var(--danger);
    font-size: 1.3rem;
}

.empty-state {
    display: grid;
    min-height: 430px;
    place-items: center;
    align-content: center;
    text-align: center;
}

.empty-state h3 {
    margin: 22px 0 8px;
}

.empty-state p {
    max-width: 340px;
    margin: 0;
    color: var(--muted);
}

.radar {
    position: relative;
    width: 130px;
    height: 130px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 49.5%, var(--line) 50%, transparent 50.5%),
        linear-gradient(transparent 49.5%, var(--line) 50%, transparent 50.5%);
    box-shadow:
        inset 0 0 35px rgba(98, 255, 173, 0.08),
        0 0 40px rgba(98, 255, 173, 0.08);
}

.radar::before,
.radar::after {
    position: absolute;
    inset: 25%;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "";
}

.radar::after {
    inset: 10%;
}

.radar span {
    position: absolute;
    inset: 50% 50% 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, var(--neon), transparent);
    transform-origin: left center;
    animation: radar 2.4s linear infinite;
}

@keyframes radar {
    to {
        transform: rotate(360deg);
    }
}

.analysis-result {
    display: grid;
    gap: 14px;
}

.score-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(98, 255, 173, 0.045);
    padding: 18px;
}

.score-block > span {
    margin-right: auto;
    color: var(--muted);
}

.score-block strong {
    color: var(--neon);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 2.4rem;
}

.result-item {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.018);
    padding: 18px;
}

.result-item > span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-item h3,
.result-item p {
    margin: 0;
    padding-right: 52px;
    line-height: 1.55;
}

.copy-button {
    position: absolute;
    top: 16px;
    right: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    border: 1px solid rgba(81, 231, 255, 0.22);
    border-radius: 999px;
    background: rgba(81, 231, 255, 0.055);
    color: #baf6ff;
    padding: 7px 10px;
    font-size: 0.76rem;
}

.alert {
    border: 1px solid;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.83rem;
    line-height: 1.5;
}

.alert-error {
    border-color: rgba(255, 104, 125, 0.32);
    background: rgba(255, 104, 125, 0.08);
    color: #ffb6c1;
}

.alert-warning {
    border-color: rgba(255, 200, 92, 0.3);
    background: rgba(255, 200, 92, 0.07);
    color: #ffe2a3;
}

.history-panel {
    scroll-margin-top: 120px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 14px 12px;
    text-align: left;
    white-space: nowrap;
}

th {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

td {
    font-size: 0.86rem;
}

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    max-width: min(420px, calc(100vw - 32px));
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: #0d1713;
    color: var(--text);
    padding: 13px 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast[data-type="error"] {
    border-color: rgba(255, 104, 125, 0.4);
    background: #1b0d11;
}

@media (max-width: 1040px) {
    :root {
        --sidebar-width: 86px;
    }

    .brand > div,
    .nav-item {
        font-size: 0;
    }

    .nav-item {
        justify-content: center;
    }

    .nav-item span {
        font-size: 0.72rem;
    }

    .sidebar-footer span:last-child {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workspace-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .app-shell {
        display: block;
    }

    .sidebar {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        padding: 10px 14px;
    }

    .brand-mark.small {
        width: 38px;
        height: 38px;
    }

    .sidebar-nav {
        display: flex;
        margin: 0;
    }

    .sidebar-footer {
        display: none;
    }

    .main-column {
        display: block;
    }

    .topbar {
        position: static;
        min-height: 82px;
        padding: 16px;
    }

    .content {
        padding: 18px 14px 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-card strong {
        font-size: 1.4rem;
    }

    .section-heading {
        align-items: center;
    }

    .terminal-badge {
        display: none;
    }

    .form-panel,
    .result-panel,
    .history-panel {
        padding: 18px;
    }

    .topbar .eyebrow {
        display: none;
    }

    .topbar h1 {
        font-size: 1.12rem;
    }
}

/* Installer and updater */

select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    background: rgba(3, 7, 8, 0.75);
    color: var(--text);
    padding: 14px 16px;
}

select:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(98, 255, 173, 0.1);
}

.alert-success {
    border-color: rgba(98, 255, 173, 0.32);
    background: rgba(98, 255, 173, 0.08);
    color: #baffd8;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-actions form {
    margin: 0;
}

.installer-page {
    min-height: 100vh;
    padding: 28px;
}

.installer-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.installer-shell.narrow {
    width: min(820px, 100%);
}

.installer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.installer-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.installer-progress {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.progress-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--muted);
    padding: 12px;
}

.progress-item > span {
    color: #577067;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.7rem;
}

.progress-item strong {
    font-size: 0.82rem;
}

.progress-item.active {
    border-color: var(--line-strong);
    background: rgba(98, 255, 173, 0.06);
    color: var(--text);
}

.progress-item.active > span,
.progress-item.done > span {
    color: var(--neon);
}

.progress-item.done {
    color: #bdd5cb;
}

.installer-card {
    padding: clamp(24px, 4vw, 42px);
}

.installer-card > h1 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.05em;
}

.installer-card > .muted {
    max-width: 720px;
    margin: 0 0 28px;
    line-height: 1.65;
}

.installer-card > .alert {
    margin-bottom: 20px;
}

.requirements-list {
    display: grid;
    gap: 9px;
    margin: 24px 0;
}

.requirement-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.018);
    padding: 13px 15px;
}

.requirement-row strong,
.requirement-row small {
    display: block;
}

.requirement-row small {
    margin-top: 3px;
    overflow-wrap: anywhere;
    font-size: 0.72rem;
}

.requirement-status {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
}

.requirement-row.ok .requirement-status {
    background: rgba(98, 255, 173, 0.1);
    color: var(--neon);
}

.requirement-row.failed .requirement-status {
    background: rgba(255, 104, 125, 0.1);
    color: var(--danger);
}

.installer-form {
    margin-top: 26px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.018);
    padding: 14px;
    cursor: pointer;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--neon);
}

.checkbox-row small {
    display: block;
    margin-top: 5px;
    font-weight: 400;
    line-height: 1.45;
}

.installer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.installation-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.installation-summary article,
.version-grid article {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.018);
    padding: 17px;
}

.installation-summary span,
.version-grid span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.installation-summary strong,
.installation-summary small,
.version-grid strong {
    display: block;
}

.installation-summary small {
    margin-top: 5px;
    overflow-wrap: anywhere;
}

.installer-complete {
    max-width: 720px;
    margin: 70px auto 0;
    text-align: center;
}

.installer-complete > .muted {
    margin-right: auto;
    margin-left: auto;
}

.success-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(98, 255, 173, 0.45);
    border-radius: 50%;
    background: rgba(98, 255, 173, 0.08);
    color: var(--neon);
    box-shadow: 0 0 38px rgba(98, 255, 173, 0.15);
    font-size: 2rem;
    font-weight: 900;
}

.completion-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 24px 0;
    text-align: left;
}

.completion-list span {
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 11px 13px;
    color: #cfe6dc;
    font-size: 0.82rem;
}

.completion-list span::before {
    margin-right: 8px;
    color: var(--neon);
    content: "✓";
}

.version-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.version-grid strong {
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.5rem;
}

.pending-list {
    margin: 24px 0;
}

.pending-list h2 {
    font-size: 1.05rem;
}

.pending-item {
    display: grid;
    grid-template-columns: minmax(190px, auto) minmax(0, 1fr);
    gap: 14px;
    border-top: 1px solid var(--line);
    padding: 13px 0;
}

.pending-item code {
    color: var(--neon);
}

.pending-item span {
    color: var(--muted);
}

.up-to-date {
    border: 1px solid rgba(98, 255, 173, 0.3);
    border-radius: 12px;
    background: rgba(98, 255, 173, 0.07);
    color: #baffd8;
    padding: 14px;
    text-align: center;
}

@media (max-width: 780px) {
    .installer-page {
        padding: 14px;
    }

    .installer-layout {
        grid-template-columns: 1fr;
    }

    .installer-progress {
        position: static;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow-x: auto;
    }

    .progress-item {
        min-width: 74px;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 9px;
        text-align: center;
    }

    .progress-item strong {
        font-size: 0.62rem;
    }

    .form-grid.two-columns,
    .installation-summary,
    .completion-list,
    .version-grid {
        grid-template-columns: 1fr;
    }

    .installer-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .installer-actions .button {
        width: 100%;
    }

    .pending-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .topbar-actions .button:first-child {
        display: none;
    }
}
