/* © 2026 DSR, DSR Wire. All rights reserved. Made by 이서하. */
:root {
    --rs-primary: #0047ab;
    --rs-primary-hover: #003a8c;
    --rs-bg: #f8fafc;
    --rs-surface: #ffffff;
    --rs-surface-soft: #f1f5f9;
    --rs-border: #cddcf5;
    --rs-border-strong: #dbe4f0;
    --rs-text: #0f172a;
    --rs-muted: #64748b;
    --rs-faint: #94a3b8;
    --rs-green: #10b981;
    --rs-red: #ef4444;
    --rs-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--rs-bg);
}

body.rs-page {
    margin: 0;
    min-height: 100vh;
    background: var(--rs-bg);
    color: var(--rs-text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.rs-shell {
    min-height: 100vh;
    padding-top: 64px;
}

.rs-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: 64px;
    background: var(--rs-surface);
    border-bottom: 1px solid var(--rs-border-strong);
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.rs-topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-brand-zone,
.rs-brand,
.rs-top-actions,
.rs-icon-actions,
.rs-section-title,
.rs-tab-row,
.rs-action-row,
.rs-control-row,
.rs-inline-field,
.rs-total-value,
.rs-footer {
    display: flex;
    align-items: center;
}

.rs-brand-zone {
    gap: 32px;
}

.rs-brand {
    gap: 10px;
    min-width: max-content;
}

.rs-logo-box {
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rs-logo-box img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.rs-brand-text {
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    color: var(--rs-primary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.rs-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 64px;
}

.rs-nav a,
.rs-nav-link {
    height: 64px;
    display: inline-flex;
    align-items: center;
    color: var(--rs-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

.rs-nav a.rs-nav-active,
.rs-nav-link.rs-nav-active {
    color: var(--rs-primary);
    border-bottom-color: var(--rs-primary);
}

.rs-top-actions {
    gap: 20px;
}

.rs-search-wrap {
    position: relative;
}

.rs-search-input {
    width: 288px;
    height: 40px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 8px;
    background: #f8fafc;
    padding: 0 38px 0 14px;
    color: var(--rs-text);
    outline: none;
}

.rs-search-input:focus,
.rs-input:focus,
.rs-select:focus {
    border-color: var(--rs-primary);
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.14);
}

.rs-search-mark {
    position: absolute;
    right: 12px;
    top: 8px;
    color: var(--rs-faint);
    font-size: 20px;
    font-weight: 800;
}

.rs-icon-actions {
    gap: 8px;
}

.rs-icon-button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--rs-faint);
    display: grid;
    place-items: center;
}

.rs-icon-button .material-symbols-outlined {
    font-size: 22px;
}

.rs-icon-button:hover {
    background: var(--rs-surface-soft);
    color: var(--rs-primary);
}

.rs-input-panel {
    position: sticky;
    top: 64px;
    z-index: 30;
    padding: 16px 32px 24px;
    background: var(--rs-surface);
    border-bottom: 1px solid var(--rs-border-strong);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.rs-input-panel .rs-container {
    min-height: 154px;
    display: flex;
    flex-direction: column;
}

.rs-mobile-panel-toggle {
    display: none;
}

.rs-container {
    width: min(1400px, calc(100vw - 64px));
    margin: 0 auto;
}

.rs-tab-row {
    gap: 28px;
    margin-bottom: 24px;
    border-bottom: 1px solid #edf2f7;
}

.rs-tab-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 4px 8px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--rs-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 800;
}

.rs-tab-button.tab-active,
.rs-tab-button.rs-tab-active {
    border-bottom-color: var(--rs-primary);
    color: var(--rs-primary);
}

.rs-tab-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: stretch;
    min-height: 96px;
}

.rs-tab-content.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.rs-input-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.rs-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.rs-label {
    color: var(--rs-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.rs-input,
.rs-select {
    width: 100%;
    height: 42px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--rs-text);
    outline: none;
    padding: 0 12px;
    font-size: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.rs-select {
    appearance: auto;
}

.rs-helper,
.rs-abbr {
    min-height: 14px;
    color: var(--rs-primary);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.rs-radio-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
}

.rs-segment-button,
.segment-btn {
    min-height: 36px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 8px;
    background: var(--rs-surface);
    color: var(--rs-muted);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rs-segment-button.active,
.rs-segment-button.active-category,
.segment-btn.active,
.segment-btn.active-category {
    background: var(--rs-primary);
    border-color: var(--rs-primary);
    color: #fff;
}

.rs-action-row {
    gap: 12px;
    align-items: end;
    justify-content: flex-end;
    min-height: 64px;
}

.rs-action-row .rs-btn {
    flex: 0 0 140px;
    min-width: 140px;
}

.rs-btn {
    border-radius: 8px;
    min-height: 42px;
    min-width: 120px;
    border: 0;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.rs-console-actions .rs-btn {
    min-width: 140px;
    width: 140px;
}

.rs-btn:hover {
    transform: translateY(-1px);
}

.rs-btn-primary {
    background: var(--rs-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 71, 171, 0.22);
}

#btnGetQuote,
#btnFindStrength {
    min-width: 140px !important;
    width: 140px !important;
}

.rs-btn-primary:hover {
    background: var(--rs-primary-hover);
}

.rs-btn-outline {
    background: #fff;
    color: var(--rs-primary);
    border: 2px solid var(--rs-primary);
}

.rs-btn-muted {
    background: #e2e8f0;
    color: #334155;
}

.rs-btn-danger-ghost {
    background: transparent;
    color: var(--rs-faint);
}

.rs-btn-danger-ghost:hover {
    color: var(--rs-red);
    background: #fff1f2;
}

.rs-split-label {
    display: block;
}

.rs-content {
    width: min(1400px, calc(100vw - 64px));
    margin: 0 auto;
    padding: 44px 0;
    position: relative;
    z-index: 1;
}

.rs-stack {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.rs-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--rs-border-strong);
    border-radius: 12px;
    background: var(--rs-surface);
    box-shadow: var(--rs-shadow);
    scroll-margin-top: 250px;
}

.rs-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 14px 24px;
    border-bottom: 1px solid #eef2f7;
    background: rgba(248, 250, 252, 0.75);
}

.rs-section-title {
    gap: 8px;
    min-width: 0;
}

.rs-section-title h2,
.rs-section-title h3 {
    margin: 0;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    color: #1e293b;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rs-title-mark {
    color: var(--rs-primary);
    font-weight: 900;
    font-size: 22px;
    display: inline-flex;
    vertical-align: middle;
}

.rs-status {
    color: var(--rs-faint);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: none;
}

.rs-table-scroll {
    overflow: auto;
}

.rs-console-table,
.rs-report-table,
.rs-compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    text-align: left;
}

.rs-console-table,
.rs-report-table {
    min-width: 1120px;
}

.rs-compare-table {
    min-width: 1320px;
}

.rs-console-table th,
.rs-report-table th,
.rs-compare-table th {
    padding: 10px 10px;
    border-bottom: 1px solid #edf2f7;
    background: #f8fafc;
    color: var(--rs-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rs-console-table td,
.rs-report-table td,
.rs-compare-table td {
    padding: 10px 10px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 13px;
    vertical-align: middle;
    height: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.rs-console-table th,
.rs-report-table th,
.rs-compare-table th {
    white-space: nowrap;
}

.rs-console-table td,
.rs-report-table td,
.rs-compare-table td {
    white-space: normal;
}

.rs-console-table td:nth-child(1),
.rs-console-table td:nth-child(3),
.rs-console-table td:nth-child(4),
.rs-console-table td:nth-child(5),
.rs-console-table td:nth-child(6),
.rs-console-table td:nth-child(8),
.rs-compare-table td:nth-child(1),
.rs-compare-table td:nth-child(3),
.rs-compare-table td:nth-child(n+4) {
    white-space: nowrap;
}

.rs-console-table th:nth-child(1),
.rs-console-table td:nth-child(1) {
    width: 4%;
    padding-left: 16px;
    padding-right: 8px;
    text-align: center;
}

.rs-console-table th:nth-child(2),
.rs-console-table td:nth-child(2) {
    width: 20%;
    text-align: left;
}

.rs-console-table th:nth-child(7),
.rs-console-table td:nth-child(7) {
    width: 20%;
}

.rs-console-table th:nth-child(3),
.rs-console-table td:nth-child(3),
.rs-console-table th:nth-child(4),
.rs-console-table td:nth-child(4),
.rs-console-table th:nth-child(5),
.rs-console-table td:nth-child(5),
.rs-console-table th:nth-child(6),
.rs-console-table td:nth-child(6),
.rs-console-table th:nth-child(8),
.rs-console-table td:nth-child(8) {
    width: 9.6%;
}

.rs-compare-table th:nth-child(1),
.rs-compare-table td:nth-child(1) {
    width: 170px;
}

.rs-compare-table th:nth-child(2),
.rs-compare-table td:nth-child(2) {
    width: 280px;
    text-align: left;
}

.rs-compare-table th:nth-child(3),
.rs-compare-table td:nth-child(3) {
    width: 110px;
}

.rs-compare-table th:nth-child(n+4),
.rs-compare-table td:nth-child(n+4) {
    width: 112px;
}

.rs-console-table tr:hover td,
.rs-report-table tr:hover td,
.rs-compare-table tr:hover td {
    background: rgba(239, 246, 255, 0.55);
}

.rs-console-table th:not(:nth-child(2)),
.rs-console-table td:not(:nth-child(2)),
.rs-report-table th:not(:nth-child(2)),
.rs-report-table td:not(:nth-child(2)),
.rs-compare-table th,
.rs-compare-table td {
    text-align: center;
}

.rs-console-table td:nth-child(2),
.rs-console-table th:nth-child(2),
.rs-report-table td:nth-child(2),
.rs-report-table th:nth-child(2) {
    text-align: left;
}

.rs-table-check {
    width: 16px;
    height: 16px;
    accent-color: var(--rs-primary);
}

.rs-text-right {
    text-align: right;
}

.rs-text-center {
    text-align: center;
}

.rs-empty-cell,
.table-empty-state {
    padding: 44px 24px !important;
    color: var(--rs-faint) !important;
    text-align: center;
}

.rs-console-controls {
    display: grid;
    grid-template-columns: minmax(260px, 4fr) minmax(200px, 3fr) minmax(300px, 3fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-top: 1px solid #edf2f7;
    background: #f8fafc;
}

.rs-eye-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rs-control-row {
    justify-content: space-between;
    gap: 12px;
}

.rs-small-title {
    color: var(--rs-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rs-toggle-label {
    color: var(--rs-faint);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rs-eye-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.rs-mini-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rs-mini-label {
    color: var(--rs-faint);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.rs-mini-input {
    width: 100%;
    height: 32px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 6px;
    background: #fff;
    color: var(--rs-text);
    outline: none;
    padding: 0 10px;
    font-size: 12px;
}

.rs-mini-input:disabled {
    background: #eef2f7;
    color: var(--rs-faint);
    cursor: not-allowed;
}

.rs-asb-card,
.toggle-container-border {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.rs-asb-card {
    margin: 0 auto;
}

.rs-asb-label,
.toggle-label-bold {
    color: var(--rs-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rs-switch,
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex: 0 0 auto;
}

.rs-switch input,
.switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.rs-slider,
.slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #dbe4f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.rs-slider::before,
.slider::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
}

.rs-switch input:checked+.rs-slider,
.switch input:checked+.slider {
    background: var(--rs-primary);
}

.rs-switch input:checked+.rs-slider::before,
.switch input:checked+.slider::before {
    transform: translateX(20px);
}

.rs-total-card {
    min-width: 180px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 8px;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.rs-total-label {
    color: var(--rs-faint);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rs-total-value {
    gap: 8px;
    margin-top: 4px;
}

.rs-total-number {
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    color: var(--rs-primary);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.rs-total-unit {
    color: var(--rs-faint);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rs-total-note {
    margin-top: 4px;
    color: var(--rs-green);
    font-size: 10px;
    font-weight: 800;
}

.rs-console-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.rs-compare-card {
    display: flex;
    flex-direction: column;
    height: 600px;
}

.rs-compare-title-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;

}

.rs-compare-title-wrap h3 {
    margin: 0;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    color: #1e293b;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rs-compare-title-wrap p {
    margin: 5px 0 0;
}

.rs-header-actions {
    display: flex;
    gap: 12px;
}

.rs-small-action {
    min-height: 28px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 6px;
    background: #fff;
    color: var(--rs-muted);
    padding: 0 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.rs-small-action:hover {
    color: var(--rs-primary);
    border-color: var(--rs-primary);
}

.rs-compare-scroll {
    flex: 1 1 auto;
    overflow: auto;
}

.rs-compare-table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.rs-table-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 12px 24px;
    border-top: 1px solid var(--rs-border-strong);
    background: rgba(248, 250, 252, 0.75);
}

.rs-footer {
    justify-content: space-between;
    width: min(1400px, calc(100vw - 64px));
    margin: 0 auto;
    padding: 16px 0 20px;
    color: var(--rs-faint);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: none;
}

.custom-scrollbar::-webkit-scrollbar,
.rs-table-scroll::-webkit-scrollbar,
.rs-compare-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track,
.rs-table-scroll::-webkit-scrollbar-track,
.rs-compare-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar-thumb,
.rs-table-scroll::-webkit-scrollbar-thumb,
.rs-compare-scroll::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #cbd5e1;
}

.abbr-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--rs-primary);
}

.rs-console-product {
    color: var(--rs-text);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;

}

.rs-console-sub,
.rs-remark-cell {
    margin-top: 3px;
    color: var(--rs-faint);
    font-size: 11px;
    font-weight: 700;
}

.rs-console-mobile-summary {
    display: none;
}

.rs-report-mobile-summary {
    display: none;
}

.rs-remark-muted {
    color: #8b5e34;
    font-size: 10px;
    letter-spacing: 0.01em;
}

.rs-type-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #005147;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.rs-length-input {
    width: 82px;
    height: 32px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 6px;
    background: #fff;
    color: var(--rs-text);
    padding: 0 10px;
    outline: none;
}

.rs-length-input:focus {
    border-color: var(--rs-primary);
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.12);
}

.rs-weight-cell {
    color: var(--rs-primary) !important;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    font-weight: 900;
}

.rs-row-remove,
.rs-compare-add {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--rs-border-strong);
    border-radius: 6px;
    background: #fff;
    color: var(--rs-primary);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.rs-row-remove {
    color: var(--rs-red);
}

.rs-row-remove:hover,
.rs-compare-add:hover {
    border-color: currentColor;
    background: #eff6ff;
}

.rs-row-remove:hover {
    background: #fff1f2;
}

.rs-manufacturer-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rs-add-placeholder {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.rs-co-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.rs-interp-tag {
    display: block;
    margin-top: 2px;
    color: var(--rs-faint);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
    height: 12px;
    overflow: hidden;
}

.rs-interp-placeholder {
    visibility: hidden;
}

.rs-compare-product {
    color: var(--rs-text);
    font-weight: 800;
    line-height: 1.15;
    max-height: 32px;
    overflow: hidden;
    display: -webkit-box;

}

.rs-total-row td {
    background: #f8fafc;
    color: var(--rs-text);
    font-weight: 900;
}

.rs-total-row:hover td {
    background: #f8fafc !important;
}

.comparison-table-panel {
    scroll-margin-top: 250px;
}

.rs-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 60px 0 40px;
    color: var(--rs-faint);
    font-size: 9 px;
    text-align: center;
}

.rs-footer-info {
    display: flex;
    gap: 16px;
    opacity: 0.6;
}

@media (max-width: 1100px) {

    .rs-nav,
    .rs-top-actions {
        display: none;
    }

    .rs-tab-content,
    .rs-console-controls {
        grid-template-columns: 1fr;
    }

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

    .rs-action-row,
    .rs-console-actions {
        justify-content: stretch;
    }

    .rs-btn {
        flex: 1 1 auto;
    }
}

.rs-interp-tag {
    font-size: 11px;
    color: #f59e0b;
    margin-top: 4px;
}

.rs-data-match-tag {
    color: #10b981;
}

.rs-interp-placeholder {
    visibility: hidden;
}

.rs-footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--rs-border-strong);
    background: #f8fafc;
}

.rs-footer p {
    color: var(--rs-faint);
    font-size: 11px;
    letter-spacing: 0.02em;
    margin: 0;
}
