* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

main {
    width: min(1500px, calc(100vw - 32px));
    margin: 24px auto;
}

.hidden {
    display: none !important;
}

.login-card {
    width: min(420px, calc(100vw - 32px));
    margin: 80px auto;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.subtitle {
    margin: 0 0 24px;
    color: #9ca3af;
}

label {
    display: block;
    margin-bottom: 14px;
    color: #cbd5e1;
}

input {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border: 1px solid #4b5563;
    border-radius: 8px;
    background: #020617;
    color: #e5e7eb;
    font-size: 15px;
}

button {
    padding: 11px 16px;
    border: 0;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

button.secondary {
    background: #374151;
}

button.secondary:hover {
    background: #4b5563;
}

button.danger {
    background: #b91c1c;
}

button.danger:hover {
    background: #991b1b;
}

.error {
    color: #f87171;
    min-height: 20px;
}

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

.app-header p {
    margin: 0;
    color: #9ca3af;
}

.tabs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #334155;
}

.tabs-left {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.runtime-tab {
    width: fit-content;
    max-width: min(760px, 48vw);
    min-height: 49px;
    padding: 7px 12px;
    display: grid;
    grid-template-columns: max-content minmax(180px, max-content) max-content max-content;
    gap: 14px;
    align-items: center;
    border-radius: 8px 8px 0 0;
    border-bottom: 0;
    font-size: 12px;
    overflow: hidden;
}

.runtime-tab div {
    min-width: 0;
}

.runtime-tab div:nth-child(2) {
    max-width: 280px;
}

.runtime-tab span {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

.runtime-tab strong {
    display: block;
    min-width: 0;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.runtime-prod {
    background: #14532d;
    border: 2px solid #22c55e;
    color: #dcfce7;
}

.runtime-dev {
    background: #ef7147;
    border: 2px solid #b73104;
    color: #1b1916;
}

.runtime-loading {
    visibility: hidden;
}

.tab {
    border-radius: 8px 8px 0 0;
    background: #1f2937;
    color: #cbd5e1;
}

.tab:hover {
    background: #374151;
}

.tab.active {
    background: #2563eb;
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.stat-box {
    min-height: 86px;
    padding: 14px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
}

.stat-box span {
    display: block;
    min-height: 34px;
    color: #9ca3af;
    font-size: 13px;
}

.stat-box strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    color: #ffffff;
}

.console-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 16px;
    height: calc((100vh - 290px) * 0.95);
    min-height: 470px;
}

.console-panel {
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
}

#consoleOutput {
    flex: 1;
    min-height: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: #020617;
    overflow: hidden;
    position: relative;
}

#consoleOutput .xterm {
    width: 100%;
    height: 100%;
    padding: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

#consoleOutput .xterm-screen,
#consoleOutput .xterm-rows {
    pointer-events: none;
    user-select: none;
}

#consoleOutput .xterm-viewport {
    pointer-events: auto;
    overflow-y: auto !important;
    scrollbar-gutter: stable;
}

#consoleOutput .xterm-viewport::-webkit-scrollbar {
    width: 14px;
}

#consoleOutput .xterm-viewport::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 8px;
}

#consoleOutput .xterm-viewport::-webkit-scrollbar-track {
    background: #020617;
}

#commandForm {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #111827;
    border-top: 1px solid #334155;
}

#commandInput {
    margin: 0;
}

.console-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.placeholder {
    padding: 24px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #9ca3af;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

.pnx-config-panel {
    padding: 16px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
}

.pnx-config-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.pnx-config-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.pnx-config-header p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.pnx-config-actions {
    display: flex;
    gap: 8px;
}

.pnx-config-actions button {
    padding: 9px 14px;
}

.pnx-config-notice {
    margin-bottom: 12px;
    padding: 10px 12px;
    border: 1px solid #9a3412;
    border-radius: 8px;
    background: #431407;
    color: #fed7aa;
    font-size: 14px;
}

.pnx-config-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pnx-config-section {
    padding: 14px 16px;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 12px;
}

.pnx-config-section.full-width {
    grid-column: 1 / -1;
}

.pnx-config-section h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.pnx-config-section-description {
    margin: 0 0 14px;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.35;
}

.pnx-config-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.pnx-config-field {
    margin-bottom: 0;
}

.pnx-config-field.full-width {
    grid-column: 1 / -1;
}

.pnx-config-field label {
    margin: 0;
}

.pnx-config-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pnx-config-key {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
}

.pnx-config-path {
    color: #64748b;
    font-size: 11px;
}

.pnx-config-field input,
.pnx-config-field textarea {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 9px 11px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
}

.pnx-config-field input[type="text"],
.pnx-config-field input[type="number"] {
    height: 38px;
}

.pnx-config-field textarea {
    min-height: 90px;
    line-height: 1.35;
    resize: vertical;
}

.pnx-config-checkbox-box {
    height: 38px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
}

.pnx-config-checkbox-box input {
    width: auto;
    margin: 0;
    padding: 0;
}

.pnx-config-section.nested {
    margin-top: 12px;
    padding: 12px;
    background: #030712;
}

.pnx-config-section.nested h4 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #e5e7eb;
}

@media (max-width: 1100px) {
    .pnx-config-container {
        grid-template-columns: 1fr;
    }

    .pnx-config-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pnx-config-fields {
        grid-template-columns: 1fr;
    }
}

.pnx-config-right-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pnx-config-info {
    position: relative;
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #64748b;
    border-radius: 50%;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 800;
    cursor: help;
}

.pnx-config-info:hover {
    background: #1f2937;
    color: #ffffff;
    border-color: #94a3b8;
}

.pnx-config-info[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 0;
    bottom: 24px;
    width: max-content;
    max-width: 320px;
    padding: 9px 11px;
    background: #020617;
    border: 1px solid #475569;
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    z-index: 100;
}

.pnx-config-info[data-tooltip]:hover::before {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 18px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #475569 transparent transparent transparent;
    z-index: 101;
}

.settings-panel {
    padding: 16px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.settings-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.settings-header p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.settings-card {
    padding: 14px 16px;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 12px;
}

.settings-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.settings-card label {
    margin-bottom: 10px;
    font-size: 14px;
}

.settings-card input,
.settings-card textarea,
.settings-card select {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 9px 11px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
    resize: vertical;
}

.settings-card input[type="number"],
.settings-card input[type="time"],
.settings-card input[type="text"],
.settings-card input[type="password"] {
    height: 38px;
}

.settings-card textarea {
    min-height: 90px;
    line-height: 1.35;
}

#settingBackupIgnoreList {
    min-height: 115px;
}

#settingServiceFlags {
    min-height: 115px;
}

.settings-note {
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid #7c2d12;
    border-radius: 8px;
    background: #431407;
    color: #fed7aa;
    font-size: 13px;
    line-height: 1.35;
}

.settings-status {
    margin-top: 12px;
    min-height: 20px;
    color: #86efac;
    font-size: 14px;
}

.repo-settings-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px 110px;
    gap: 12px;
    align-items: end;
    margin-bottom: 10px;
}

.repo-settings-row label {
    margin-bottom: 0;
}

.mode-field {
    display: block;
}

.mode-box {
    height: 38px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 700;
}

.mode-box input {
    width: auto;
    margin: 0;
    padding: 0;
}

#saveSettingsBtn {
    padding: 9px 14px;
    min-width: 120px;
}

.settings-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.user-avatar {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    background-color: #002370;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    border: 3px solid #3d66d7;
    box-shadow: 0 0 0 2px #020617;
    overflow: hidden;
    transform: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.user-avatar:hover {
    background-color: #1d4ed8;
    background-size: cover;
    transform: none;
}

.profile-settings-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.avatar-edit-box {
    position: relative;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    margin: 0;
    cursor: pointer;
}

.avatar-edit-box input {
    display: none;
}

.avatar-edit-box:hover .avatar-edit-overlay {
    opacity: 1;
}

.avatar-edit-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

.user-avatar-preview {
    width: 82px;
    height: 82px;
    border: 2px solid #334155;
    border-radius: 999px;
    background-color: #334155;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #e5e7eb;
    font-size: 26px;
    font-weight: 800;
    line-height: 78px;
    text-align: center;
    overflow: hidden;
}

.profile-display-name-box {
    flex: 1;
    min-width: 0;
}

.profile-display-name-box label {
    margin-bottom: 10px;
}

.user-dropdown {
    position: absolute;
    top: 54px;
    right: 0;
    width: 180px;
    padding: 8px;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 10px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    z-index: 50;
}

.user-dropdown button {
    width: 100%;
    padding: 10px 12px;
    text-align: left;
    background: transparent;
    color: #e5e7eb;
    border-radius: 7px;
}

.user-dropdown button:hover {
    background: #1f2937;
}




.plugin-list-header,
.plugin-row {
    display: grid;
    grid-template-columns: 160px minmax(220px, 1fr) 180px minmax(220px, 1fr) 90px;
    gap: 10px;
    align-items: center;
}

.plugin-list-header {
    margin-bottom: 8px;
    padding: 0 4px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.plugin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plugin-row {
    padding: 10px;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 10px;
}

.plugin-row input {
    margin: 0;
    height: 38px;
    padding: 9px 11px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
}

.plugin-row button {
    padding: 9px 10px;
}

@media (max-width: 1100px) {
    .plugin-list-header {
        display: none;
    }

    .plugin-row {
        grid-template-columns: 1fr;
    }
}






@media (max-width: 1000px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tabs {
        align-items: stretch;
        flex-direction: column;
    }

    .tabs-left {
        flex-wrap: wrap;
    }

    .runtime-tab {
        max-width: 100%;
        grid-template-columns: 80px 1fr;
        border-radius: 8px;
        border-bottom-width: 2px;
    }

    .repo-settings-row {
        grid-template-columns: 1fr;
    }

    .mode-box {
        justify-content: flex-start;
        padding-left: 12px;
    }
}
.backups-panel {
    padding: 16px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
}

.backups-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.backups-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.backups-header p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.backups-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.backup-upload-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.backup-upload-form input {
    width: 260px;
    height: 38px;
    margin: 0;
    padding: 8px 10px;
}

.backups-actions button,
.backup-upload-form button {
    height: 38px;
    padding: 9px 14px;
}

.backup-table-wrap {
    overflow-x: auto;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 12px;
}

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

.backup-table th,
.backup-table td {
    padding: 11px 12px;
    border-bottom: 1px solid #1f2937;
    text-align: left;
    font-size: 14px;
}

.backup-table th {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    background: #030712;
}

.backup-table tr:last-child td {
    border-bottom: 0;
}

.backup-table a {
    color: #93c5fd;
    font-weight: 700;
    text-decoration: none;
}

.backup-table a:hover {
    text-decoration: underline;
}

.backup-table input[type="radio"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.backup-actions-cell {
    display: flex;
    gap: 8px;
    align-items: center;
}

.backup-actions-cell button {
    padding: 7px 10px;
    font-size: 12px;
}

@media (max-width: 1000px) {
    .backups-header {
        flex-direction: column;
    }

    .backups-actions,
    .backup-upload-form {
        width: 100%;
        justify-content: flex-start;
    }

    .backup-upload-form input {
        width: min(100%, 320px);
    }
}


.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 23, 0.78);
}

.modal-card {
    width: min(920px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 16px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.modal-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.modal-header p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.settings-card.full-width {
    grid-column: 1 / -1;
}

@media (max-width: 980px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

.pin-modal-card {
    width: min(420px, calc(100vw - 32px));
    padding: 16px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.pin-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

#prodPinError {
    min-height: 20px;
    margin-top: 8px;
}

.wide-modal-card {
    width: min(1200px, calc(100vw - 32px));
}

.user-management-create-grid {
    display: grid;
    grid-template-columns: 180px 220px 140px 190px 140px;
    gap: 10px;
    align-items: end;
}

.user-management-create-grid label {
    margin-bottom: 0;
}

.user-management-table-wrap {
    margin-top: 14px;
    overflow: auto;
    border: 1px solid #334155;
    border-radius: 12px;
}

.user-management-row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.user-management-row-actions button {
    padding: 8px 10px;
}

.user-management-input {
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
}

.user-management-select {
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #4b5563;
    border-radius: 7px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .user-management-create-grid {
        grid-template-columns: 1fr;
    }
}


.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.user-presence-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.user-presence-avatar {
    width: 36px;
    height: 36px;
    margin-left: -10px;
    border: 3px solid #3d66d7;
    border-radius: 999px;
    background: #002370;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    overflow: hidden;
    cursor: default;
}

.user-presence-avatar:first-child {
    margin-left: 0;
}

.user-avatar-preview {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.avatar-settings-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.avatar-upload-label {
    flex: 1;
}

.settings-card.full-width .settings-note {
    margin-bottom: 14px;
}

.generated-password-box {
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #22c55e;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.08);
    color: #d1fae5;
    font-family: Consolas, "Courier New", monospace;
    word-break: break-all;
}

.generated-password-box strong {
    display: block;
    margin-bottom: 6px;
    color: #86efac;
}

.two-factor-qr {
    display: block;
    width: 180px;
    height: 180px;
    margin: 12px 0;
    padding: 10px;
    border-radius: 12px;
    background: #ffffff;
}

#twoFactorSecret {
    font-family: Consolas, "Courier New", monospace;
    letter-spacing: 0.04em;
}

.settings-note {
    margin-bottom: 14px;
}

.two-factor-status-note {
    margin-bottom: 14px;
}

.two-factor-note {
    margin: 0 0 16px;
}

.two-factor-setup-box {
    margin-top: 14px;
}

.two-factor-setup-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.two-factor-qr {
    margin: 0;
}

.two-factor-fields label {
    margin-bottom: 12px;
}

.two-factor-fields button {
    margin-top: 2px;
}

.password-note {
    margin-bottom: 16px;
}

#twoFactorDisableBox button {
    margin-top: 4px;
}

@media (max-width: 700px) {
    .two-factor-setup-layout {
        grid-template-columns: 1fr;
    }
}