:root {
    --body-bg: #f5f6f8;
    --header-bg: #ffffff;
    --panel-bg: #ffffff;
    --text: #2f3542;
    --muted: #6b7280;
    --border: #d9dde5;
    --border-soft: #e7eaf0;
    --primary: #4f6f8f;
    --primary-hover: #405b75;
    --primary-soft: #edf3f8;
    --success-bg: #edf8f1;
    --success-text: #237245;
    --error-bg: #fff0f0;
    --error-text: #a33a3a;
    --warning-bg: #fff8e8;
    --warning-text: #7a5a19;
    --radius: 4px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--body-bg);
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0;
}

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

.app-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
}

.app-subtitle {
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted);
}

.header-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
}

.header-link:hover {
    background: #f8fafc;
    border-color: #c9ced8;
}

.main {
    flex: 1;
    width: min(520px, calc(100% - 32px));
    margin: 42px auto;
}

.main.wide {
    width: min(900px, calc(100% - 32px));
}

.panel {
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.panel-header {
    padding: 24px 26px 18px;
    border-bottom: 1px solid var(--border-soft);
}

.panel-header h1 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
}

.panel-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.form {
    padding: 22px 26px 26px;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #374151;
}

input,
textarea {
    width: 100%;
    border: 1px solid #cfd5df;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--text);
    font: inherit;
    outline: none;
}

input {
    height: 38px;
    padding: 0 10px;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 111, 143, 0.15);
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

button:hover,
.button-link:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.note {
    padding: 14px 26px;
    color: var(--muted);
    font-size: 12px;
    background: #fafbfc;
    border-top: 1px solid var(--border-soft);
}

.alert {
    margin: 18px 26px 0;
    padding: 11px 12px;
    border-radius: var(--radius);
    line-height: 1.4;
}

.alert-error {
    color: var(--error-text);
    background: var(--error-bg);
    border: 1px solid #f3caca;
}

.status {
    margin: 22px 26px 0;
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
}

.status-ok {
    color: var(--success-text);
    background: var(--success-bg);
    border: 1px solid #c8ead4;
}

.status-error {
    color: var(--error-text);
    background: var(--error-bg);
    border: 1px solid #f3caca;
}

.block {
    margin: 22px 26px;
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: #ffffff;
}

.block-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.block h2,
.block-title h2 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
}

.block p,
.block-title p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.meta-row {
    margin-top: 14px;
    padding: 9px 10px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-radius: var(--radius);
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    font-size: 13px;
}

.meta-row span {
    color: var(--muted);
}

.meta-row strong {
    color: #374151;
    font-weight: 600;
}

.message-box,
.warning-box {
    margin: 0 26px 22px;
    padding: 12px;
    border-radius: var(--radius);
    line-height: 1.5;
    font-size: 13px;
}

.message-box {
    color: #475569;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
}

.warning-box {
    color: var(--warning-text);
    background: var(--warning-bg);
    border: 1px solid #f0dfad;
}

.code-item {
    margin-top: 16px;
}

.code-title {
    margin-bottom: 7px;
    font-weight: 600;
    color: #374151;
}

textarea {
    min-height: 92px;
    padding: 10px;
    resize: vertical;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    line-height: 1.45;
    background: #f8fafc;
    color: #1f2937;
}

.empty {
    margin-top: 14px;
    padding: 12px;
    color: var(--muted);
    background: #f8fafc;
    border: 1px dashed #cfd5df;
    border-radius: var(--radius);
}

.footer {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0 24px;
    color: #8a93a3;
    font-size: 12px;
}

@media (max-width: 640px) {
    .main {
        margin: 24px auto;
    }

    .header-between,
    .block-header,
    .meta-row {
        align-items: stretch;
        flex-direction: column;
    }

    .header-link,
    .button-link,
    button {
        width: 100%;
    }

    .panel-header,
    .form {
        padding-left: 18px;
        padding-right: 18px;
    }

    .block,
    .message-box,
    .warning-box {
        margin-left: 18px;
        margin-right: 18px;
    }

    .alert,
    .status {
        margin-left: 18px;
        margin-right: 18px;
    }
}

.file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.file-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.file-title {
    font-weight: 600;
    color: #374151;
}

.file-meta {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.small-button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
}

.warning-box.inside {
    margin: 14px 0;
}

@media (max-width: 640px) {
    .file-row {
        align-items: stretch;
        flex-direction: column;
    }

    .small-button {
        width: 100%;
    }
}

/* Улучшение списка конфигурационных файлов */

.block .file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    margin-top: 10px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: #f9fafb;
}

.block .file-row:first-of-type {
    margin-top: 16px;
}

.block .file-row:last-child {
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 14px;
}

.file-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.file-meta {
    font-size: 12px;
    color: #6b7280;
    font-family: Consolas, "Courier New", monospace;
}

.small-button {
    flex: 0 0 auto;
    min-width: 116px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
}

.block-title {
    margin-bottom: 12px;
}

.block-title h2 {
    margin-bottom: 6px;
}

.block-title p {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .block .file-row {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .small-button {
        width: 100%;
    }
}


/* Verify page */

.verify-page {
    min-height: 100vh;
    padding: 48px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #f3f4f6;
    color: #1f2937;
}

.verify-card {
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border: 1px solid #d8dee4;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.verify-header {
    padding: 28px 32px 22px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
}

.verify-kicker {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.verify-header h1 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.25;
    color: #111827;
}

.verify-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
}

.verify-alert {
    margin: 20px 32px 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
}

.verify-alert-success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.verify-alert-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.verify-form {
    padding: 24px 32px 8px;
}

.verify-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.verify-form input {
    width: 100%;
    box-sizing: border-box;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-size: 18px;
    font-family: Consolas, "Courier New", monospace;
    letter-spacing: 0.18em;
    color: #111827;
    outline: none;
}

.verify-form input:focus {
    border-color: #64748b;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.16);
}

.verify-form button {
    margin-top: 16px;
    min-width: 150px;
    height: 40px;
    padding: 0 18px;
    border: 1px solid #1f2937;
    border-radius: 8px;
    background: #374151;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.verify-form button:hover {
    background: #1f2937;
}

.verify-footer {
    padding: 8px 32px 28px;
    font-size: 13px;
}

.verify-footer a {
    color: #374151;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .verify-page {
        padding: 20px 12px;
    }

    .verify-card {
        border-radius: 8px;
    }

    .verify-header,
    .verify-form,
    .verify-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .verify-form button {
        width: 100%;
    }
}


/* Verify page — aligned with common service-desk style */

.verify-page {
    min-height: 100vh;
    padding: 42px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #f4f5f7;
    color: #172b4d;
    font-family: Arial, Helvetica, sans-serif;
}

.verify-card {
    width: 100%;
    max-width: 620px;
    background: #ffffff;
    border: 1px solid #dfe1e6;
    border-radius: 4px;
    box-shadow: none;
    overflow: hidden;
}

.verify-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid #dfe1e6;
    background: #ffffff;
}

.verify-kicker {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b778c;
    text-transform: none;
    letter-spacing: 0;
}

.verify-header h1 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    color: #172b4d;
}

.verify-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #42526e;
}

.verify-header strong {
    color: #172b4d;
    font-weight: 600;
}

.verify-alert {
    margin: 18px 28px 0;
    padding: 11px 13px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.45;
}

.verify-alert-success {
    border: 1px solid #abf5d1;
    background: #e3fcef;
    color: #006644;
}

.verify-alert-error {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}

.verify-form {
    padding: 22px 28px 8px;
}

.verify-form label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #172b4d;
}

.verify-form input {
    width: 100%;
    box-sizing: border-box;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #c1c7d0;
    border-radius: 3px;
    background: #fafbfc;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.08em;
    color: #172b4d;
    outline: none;
}

.verify-form input:focus {
    border-color: #4c9aff;
    background: #ffffff;
    box-shadow: 0 0 0 1px #4c9aff;
}

.verify-form button {
    margin-top: 14px;
    min-width: 132px;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #0052cc;
    border-radius: 3px;
    background: #0052cc;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.verify-form button:hover {
    background: #0747a6;
    border-color: #0747a6;
}

.verify-footer {
    padding: 8px 28px 26px;
    font-size: 13px;
}

.verify-footer a {
    color: #0052cc;
    text-decoration: none;
}

.verify-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .verify-page {
        padding: 20px 12px;
    }

    .verify-card {
        border-radius: 4px;
    }

    .verify-header,
    .verify-form,
    .verify-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .verify-form button {
        width: 100%;
    }
}


/* Local panel actions */

.panel-header {
    position: relative;
}

.panel-local-actions {
    position: absolute;
    top: 22px;
    right: 24px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.panel-local-actions .secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;
    color: #4f6f91;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.panel-local-actions .secondary-link:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    text-decoration: none;
}

@media (max-width: 720px) {
    .panel-local-actions {
        position: static;
        margin-bottom: 14px;
    }
}


/* Help link inside configs panel header */

.panel-header {
    position: relative;
}

.panel-header a[href="/help"] {
    position: absolute;
    top: 28px;
    right: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 14px;

    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;

    color: #4f6f91;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.panel-header a[href="/help"]:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    text-decoration: none;
}

@media (max-width: 720px) {
    .panel-header {
        padding-right: 24px;
    }

    .panel-header a[href="/help"] {
        position: static;
        margin-bottom: 14px;
    }
}


/* Help button styled like download buttons */

.panel-header a[href="/help"] {
    position: absolute;
    top: 32px;
    right: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    border: 1px solid #4f6f91;
    border-radius: 4px;
    background: #4f6f91;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.panel-header a[href="/help"]:hover {
    background: #405d7a;
    border-color: #405d7a;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 720px) {
    .panel-header a[href="/help"] {
        position: static;
        margin-bottom: 14px;
        width: fit-content;
    }
}


/* Configs help button: like logout style, aligned like download buttons */

.panel-header a[href="/help"] {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 136px;
    height: 42px;
    box-sizing: border-box;

    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;

    color: #4f6f91;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.panel-header a[href="/help"]:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    color: #4f6f91;
    text-decoration: none;
}

.panel-header {
    padding-right: 190px;
}

@media (max-width: 720px) {
    .panel-header {
        padding-right: 24px;
    }

    .panel-header a[href="/help"] {
        position: static;
        transform: none;
        margin-top: 14px;
        width: 136px;
        height: 42px;
    }
}


/* Help page actions and app links */

.app-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.app-link-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 12px;

    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;

    color: #4f6f91;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.app-link-list a:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    text-decoration: none;
}

.help-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.help-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 190px;
    height: 42px;
    box-sizing: border-box;

    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;

    color: #4f6f91;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.help-actions a:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    text-decoration: none;
}

@media (max-width: 720px) {
    .help-actions {
        flex-direction: column;
    }

    .help-actions a {
        width: 100%;
    }

    .app-link-list {
        flex-direction: column;
    }

    .app-link-list a {
        width: 100%;
        box-sizing: border-box;
    }
}


/* Help page bottom buttons compact */

.help-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    justify-content: flex-start;
    align-items: center;
}

.help-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 132px;
    height: 36px;
    padding: 0 14px;
    box-sizing: border-box;

    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;

    color: #4f6f91;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.help-actions a:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    color: #4f6f91;
    text-decoration: none;
}

@media (max-width: 720px) {
    .help-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .help-actions a {
        width: 100%;
        min-width: 0;
    }
}


/* Help bottom actions — compact right aligned */

.panel .help-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;

    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e1e4e8;
}

.panel .help-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 116px;
    height: 34px;
    padding: 0 14px;
    box-sizing: border-box;

    border: 1px solid #d8dee4;
    border-radius: 4px;
    background: #ffffff;

    color: #4f6f91;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.panel .help-actions a:hover {
    background: #f6f8fa;
    border-color: #c9d1d9;
    color: #4f6f91;
    text-decoration: none;
}

@media (max-width: 720px) {
    .panel .help-actions {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
    }

    .panel .help-actions a {
        width: 100%;
    }
}


/* Danger warning */

.alert-danger {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}


/* Danger warning */

.alert-danger {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}


/* Danger warning */

.alert-danger {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}


/* Configs page sticky side warnings */

.configs-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.configs-warnings {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-warning {
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.45;
}

.sticky-warning-title {
    margin-bottom: 6px;
    font-weight: 700;
}

.sticky-warning-text {
    color: inherit;
}

.sticky-warning-info {
    border: 1px solid #ffecb5;
    background: #fff8e1;
    color: #7a5200;
}

.sticky-warning-danger {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}

@media (max-width: 1180px) {
    .configs-layout {
        grid-template-columns: 1fr;
    }

    .configs-warnings {
        position: static;
        order: -1;
    }
}


/* Configs page sticky side warnings */

.configs-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.configs-warnings {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-warning {
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.45;
}

.sticky-warning-title {
    margin-bottom: 6px;
    font-weight: 700;
}

.sticky-warning-text {
    color: inherit;
}

.sticky-warning-info {
    border: 1px solid #ffecb5;
    background: #fff8e1;
    color: #7a5200;
}

.sticky-warning-danger {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}

@media (max-width: 1180px) {
    .configs-layout {
        grid-template-columns: 1fr;
    }

    .configs-warnings {
        position: static;
        order: -1;
    }
}


/* Configs page: sticky warning sidebar */

.main.wide {
    max-width: 1280px;
}

.configs-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.configs-layout > .panel {
    min-width: 0;
}

.configs-warnings {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-warning {
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.45;
}

.sticky-warning-title {
    margin-bottom: 6px;
    font-weight: 700;
}

.sticky-warning-info {
    border: 1px solid #ffecb5;
    background: #fff8e1;
    color: #7a5200;
}

.sticky-warning-danger {
    border: 1px solid #ffbdad;
    background: #ffebe6;
    color: #bf2600;
}

@media (max-width: 1180px) {
    .configs-layout {
        grid-template-columns: 1fr;
    }

    .configs-warnings {
        position: static;
        order: -1;
    }
}
