html.trackgo-standalone-html,
body.trackgo-standalone-body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background: #080812;
}

.tg-standalone-shell {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--tg-bg, #080812);
    color: var(--tg-text, #e8e8f0);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.tg-standalone-shell *,
.tg-standalone-shell *::before,
.tg-standalone-shell *::after {
    box-sizing: border-box;
}

.tg-standalone-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    background: rgba(10, 10, 18, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.tg-standalone-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.tg-standalone-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4a7dff, #22d3ee);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.tg-standalone-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.tg-standalone-nav a,
.tg-standalone-logout,
.tg-standalone-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--tg-text-secondary, #a6a6bd);
    background: transparent;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.tg-standalone-nav a:hover,
.tg-standalone-logout:hover,
.tg-standalone-menu-toggle:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.tg-standalone-nav a.active {
    color: #fff;
    background: rgba(74, 125, 255, 0.16);
    border-color: rgba(74, 125, 255, 0.28);
}

.tg-standalone-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.tg-standalone-nav-head {
    display: none;
}

.tg-standalone-menu-toggle,
.tg-standalone-menu-backdrop,
.tg-standalone-menu-close {
    display: none;
}

.tg-standalone-push {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 34px;
    border: 1px solid rgba(74, 125, 255, 0.24);
    border-radius: 8px;
    background: rgba(74, 125, 255, 0.12);
    color: #dbe6ff;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.tg-standalone-push:hover,
.tg-standalone-push.active {
    color: #fff;
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.28);
}

.tg-standalone-push:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.tg-standalone-main {
    width: min(1560px, calc(100% - 28px));
    margin: 0 auto;
    padding: 18px 0 36px;
}

.tg-install-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 14px;
    background: #080812;
    color: #ececf5;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tg-install-card {
    width: min(760px, 100%);
    background: #11111d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 26px;
}

.tg-install-card h1 {
    margin: 0 0 8px;
    font-size: 24px;
}

.tg-install-card p {
    color: #aaaac0;
}

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

.tg-install-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tg-install-field label {
    color: #c9c9d8;
    font-size: 12px;
    font-weight: 700;
}

.tg-install-field input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #1a1a28;
    color: #fff;
    padding: 11px 12px;
    font-size: 14px;
}

.tg-install-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.tg-install-button {
    border: 0;
    border-radius: 8px;
    background: #4a7dff;
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.tg-install-button.secondary {
    background: #24283a;
    color: #d9def7;
}

.tg-install-alert {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 71, 87, 0.12);
    color: #ff9aa4;
    border: 1px solid rgba(255, 71, 87, 0.22);
}

.tg-install-alert.success {
    background: rgba(34, 211, 238, 0.12);
    color: #8beaff;
    border-color: rgba(34, 211, 238, 0.22);
}

@media (max-width: 820px) {
    .tg-standalone-topbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        padding: calc(10px + env(safe-area-inset-top, 0px)) 12px 10px;
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .tg-standalone-brand {
        min-width: 0;
        font-size: 13px;
    }

    .tg-standalone-brand span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tg-standalone-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100vw;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        gap: 8px;
        padding: calc(18px + env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
        overflow-x: hidden;
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        background: #080812;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(16px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tg-standalone-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.tg-menu-open .tg-standalone-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .tg-standalone-nav::-webkit-scrollbar {
        display: none;
    }

    .tg-standalone-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        margin-bottom: 8px;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
    }

    .tg-standalone-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        color: #d9def7;
        padding: 0 13px;
        font-size: 12px;
        font-weight: 800;
        cursor: pointer;
    }

    .tg-standalone-nav a,
    .tg-standalone-nav .tg-standalone-push {
        display: flex;
        flex: 0 0 auto;
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 0 15px;
        border-color: rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.03);
        white-space: normal;
        font-size: 14px;
    }

    .tg-standalone-nav.is-open a,
    .tg-standalone-nav.is-open .tg-standalone-push,
    .tg-standalone-nav.is-open .tg-standalone-logout {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .tg-standalone-nav .tg-standalone-push {
        margin-top: 8px;
        color: #dbe6ff;
        border-color: rgba(74, 125, 255, 0.24);
        background: rgba(74, 125, 255, 0.12);
    }

    .tg-standalone-nav .tg-standalone-push.active {
        color: #d8ffe7;
        border-color: rgba(34, 197, 94, 0.3);
        background: rgba(34, 197, 94, 0.16);
    }

    .tg-standalone-actions {
        display: none;
    }

    .tg-standalone-push,
    .tg-standalone-logout,
    .tg-standalone-menu-toggle {
        min-height: 40px;
        padding: 0 10px;
        font-size: 11px;
    }

    .tg-standalone-push {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tg-standalone-menu-toggle {
        display: inline-flex;
        border-color: rgba(74, 125, 255, 0.24);
        background: rgba(74, 125, 255, 0.12);
        color: #dbe6ff;
        cursor: pointer;
    }

    .tg-standalone-menu-toggle[aria-expanded="true"] {
        color: #fff;
        border-color: rgba(74, 125, 255, 0.42);
        background: rgba(74, 125, 255, 0.22);
    }

    .tg-standalone-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1190;
        display: block;
        background: #080812;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease;
    }

    .tg-standalone-menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    body.tg-menu-open {
        overflow: hidden;
    }

    .tg-standalone-main {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 10px calc(18px + env(safe-area-inset-bottom, 0px));
    }

    .tg-install-page {
        align-items: flex-start;
        padding: calc(16px + env(safe-area-inset-top, 0px)) 10px calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .tg-install-card {
        padding: 20px 14px;
        border-radius: 8px;
    }

    .tg-install-card h1 {
        font-size: 21px;
    }

    .tg-install-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-install-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        text-align: center;
    }

    .tg-install-field input,
    .tg-update-form input[type="text"],
    .tg-update-form input[type="password"] {
        font-size: 16px;
    }

    .tg-update-hero,
    .tg-update-card {
        padding: 18px 14px;
    }

    .tg-update-hero {
        align-items: flex-start;
    }

    .tg-update-hero h2 {
        font-size: 20px;
    }

    .tg-update-card-head,
    .tg-update-latest,
    .tg-restore-item,
    .tg-restore-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-update-button {
        width: 100%;
        min-height: 44px;
    }
}

@media (max-width: 420px) {
    .tg-standalone-push {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tg-standalone-mark {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .tg-standalone-brand {
        gap: 8px;
    }
}

@media (max-width: 820px) {
    .tg-standalone-main {
        padding-top: 12px;
    }

    .tg-install-grid {
        grid-template-columns: 1fr;
    }
}

.tg-updates-page {
    width: min(820px, 100%);
    margin: 0 auto;
    color: #edf0ff;
}

.tg-updates-title h1 {
    margin: 4px 0 18px;
    font-size: 22px;
    line-height: 1.25;
}

.tg-update-hero,
.tg-update-card {
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #11111d;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.tg-update-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.tg-update-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8b5cf6, #4a7dff);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.tg-update-hero h2,
.tg-update-card h3 {
    margin: 0;
    color: #fff;
    line-height: 1.2;
}

.tg-update-hero h2 {
    font-size: 24px;
}

.tg-update-hero p,
.tg-update-card p {
    margin: 7px 0 0;
    color: #a6a6bd;
    font-size: 14px;
}

.tg-update-hero strong {
    color: #8b9cff;
}

.tg-update-card {
    padding: 24px;
}

.tg-update-card.compact {
    padding: 18px 24px;
}

.tg-update-card-head,
.tg-update-latest,
.tg-restore-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.tg-update-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.tg-update-grid-wide {
    grid-column: 1 / -1;
}

.tg-update-form label,
.tg-update-grid label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tg-update-form span,
.tg-update-grid span {
    color: #cfd2e8;
    font-size: 12px;
    font-weight: 700;
}

.tg-update-form input[type="text"],
.tg-update-form input[type="password"] {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: #1a1a28;
    color: #fff;
    padding: 0 12px;
    outline: none;
}

.tg-update-form input:focus {
    border-color: rgba(74, 125, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(74, 125, 255, 0.14);
}

.tg-update-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.tg-update-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: #6d5dfc;
    color: #fff;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.tg-update-button.primary {
    background: #4a7dff;
}

.tg-update-button.dark {
    background: #20283b;
}

.tg-update-button:hover {
    filter: brightness(1.08);
}

.tg-update-alert {
    margin: 0 0 16px;
    padding: 13px 15px;
    border-radius: 8px;
    border: 1px solid rgba(34, 211, 238, 0.25);
    background: rgba(34, 211, 238, 0.11);
    color: #9beeff;
}

.tg-update-alert.error {
    border-color: rgba(255, 71, 87, 0.26);
    background: rgba(255, 71, 87, 0.12);
    color: #ff9aa4;
}

.tg-update-latest {
    margin-top: 18px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #171724;
}

.tg-update-latest strong,
.tg-restore-item strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.tg-update-latest span,
.tg-restore-item span,
.tg-restore-item small {
    display: block;
    margin-top: 5px;
    color: #a7aac2;
    font-size: 12px;
}

.tg-update-latest a {
    display: inline-flex;
    margin-top: 8px;
    color: #8b9cff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.tg-update-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.13);
    color: #80f2a8;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
}

.tg-restore-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.tg-restore-item {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #171724;
}

.tg-restore-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-update-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #cfd2e8;
    font-size: 12px;
    font-weight: 600;
}

.tg-update-check input {
    width: 15px;
    height: 15px;
    accent-color: #4a7dff;
}

.tg-update-empty {
    margin-top: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #a7aac2;
    padding: 18px;
    text-align: center;
}

.tg-update-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tg-update-requirements span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 800;
}

.tg-update-requirements .ok {
    background: rgba(34, 197, 94, 0.13);
    color: #80f2a8;
}

.tg-update-requirements .bad {
    background: rgba(255, 71, 87, 0.13);
    color: #ff9aa4;
}

@media (max-width: 760px) {
    .tg-update-hero,
    .tg-update-card-head,
    .tg-update-latest,
    .tg-restore-item,
    .tg-restore-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-update-grid {
        grid-template-columns: 1fr;
    }

    .tg-update-button {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .tg-updates-page {
        width: 100%;
    }

    .tg-updates-title h1 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .tg-update-hero,
    .tg-update-card {
        padding: 18px 14px;
        margin-bottom: 12px;
    }

    .tg-update-hero h2 {
        font-size: 20px;
    }

    .tg-update-grid {
        grid-template-columns: 1fr;
    }

    .tg-update-form input[type="text"],
    .tg-update-form input[type="password"] {
        min-height: 44px;
        font-size: 16px;
    }

    .tg-restore-item {
        padding: 14px;
    }
}

.tg-logs-page {
    width: min(1120px, 100%);
    margin: 0 auto;
    color: #f8fafc;
}

.tg-logs-head,
.tg-logs-card,
.tg-logs-summary article {
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.tg-logs-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 16px;
}

.tg-logs-head h1,
.tg-logs-card h2 {
    margin: 0;
    letter-spacing: 0;
}

.tg-logs-head h1 {
    font-size: 28px;
}

.tg-logs-head p,
.tg-logs-card p,
.tg-log-files span,
.tg-log-entry small {
    color: #94a3b8;
}

.tg-logs-actions,
.tg-logs-card-head,
.tg-logs-limit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tg-logs-card-head {
    justify-content: space-between;
}

.tg-logs-button,
.tg-logs-limit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 10px;
    padding: 0 14px;
    background: rgba(8, 145, 178, 0.12);
    color: #a5f3fc;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.tg-logs-button.primary {
    border-color: transparent;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
}

.tg-logs-button.danger {
    border-color: rgba(248, 113, 113, 0.34);
    background: rgba(127, 29, 29, 0.22);
    color: #fecaca;
}

.tg-logs-alert {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.24);
    font-weight: 800;
}

.tg-logs-alert.error {
    background: rgba(127, 29, 29, 0.22);
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.28);
}

.tg-logs-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.tg-logs-summary article {
    border-radius: 14px;
    padding: 16px;
}

.tg-logs-summary span {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tg-logs-summary strong {
    display: block;
    margin-top: 8px;
    font-size: 24px;
}

.tg-logs-summary .error strong {
    color: #fb7185;
}

.tg-logs-summary .warning strong {
    color: #fbbf24;
}

.tg-logs-card {
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.tg-logs-card code {
    overflow-wrap: anywhere;
    color: #a5f3fc;
}

.tg-logs-limit {
    flex-wrap: wrap;
    margin-top: 14px;
}

.tg-logs-limit span {
    color: #94a3b8;
    font-weight: 800;
}

.tg-logs-limit a {
    min-height: 34px;
    border-radius: 999px;
    padding: 0 12px;
}

.tg-logs-limit a.active {
    background: rgba(34, 211, 238, 0.28);
    color: #fff;
}

.tg-log-files {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tg-log-files article,
.tg-log-entry {
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.34);
    border-radius: 12px;
    padding: 12px;
}

.tg-log-files strong,
.tg-log-files span {
    display: block;
    overflow-wrap: anywhere;
}

.tg-log-list {
    display: grid;
    gap: 10px;
}

.tg-log-entry {
    border-left: 4px solid rgba(148, 163, 184, 0.42);
}

.tg-log-entry.level-error {
    border-left-color: #fb7185;
}

.tg-log-entry.level-warning {
    border-left-color: #fbbf24;
}

.tg-log-entry.level-debug {
    border-left-color: #818cf8;
}

.tg-log-entry-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.tg-log-entry-meta span {
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 900;
}

.tg-log-entry pre {
    margin: 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #f8fafc;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    line-height: 1.55;
}

.tg-logs-empty {
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    padding: 18px;
    color: #94a3b8;
}

#tg-log-copy-source {
    position: fixed;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 760px) {
    .tg-logs-head,
    .tg-logs-card-head {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-logs-head {
        padding: 18px 14px;
    }

    .tg-logs-head h1 {
        font-size: 24px;
    }

    .tg-logs-actions,
    .tg-logs-button {
        width: 100%;
    }

    .tg-logs-summary,
    .tg-log-files {
        grid-template-columns: 1fr;
    }

    .tg-log-entry-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}
