/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-sidebar: #FFFFFF;
    --bg-header: #FFFFFF;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --text: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --primary: #DC2626;
    --primary-light: #EBF5FF;
    --primary-dark: #94A3B8;
    --green: #16A34A;
    --green-bg: #F0FDF4;
    --yellow: #CA8A04;
    --yellow-bg: #FEFCE8;
    --red: #DC2626;
    --red-bg: #FEF2F2;
    --blue-bg: #EFF6FF;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
    --sidebar-width: 280px;
    --header-height: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}

.header-inner {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-text {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-container input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,87,184,0.1);
    background: var(--bg-card);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 200;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--primary-light);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item .result-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.search-result-item .result-section {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-download:hover {
    background: var(--primary-dark);
}

/* ===== Layout ===== */
.layout {
    display: flex;
    padding-top: var(--header-height);
    min-height: 100vh;
}

/* ===== Sidebar ===== */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    padding: 16px 0;
    z-index: 50;
    transform: translateX(0);
}

.sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
}

/* ===== Hamburger Button ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 110;
}

.hamburger:hover {
    background: var(--bg);
    border-color: var(--text-muted);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animated X when open */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.nav-list {
    list-style: none;
}

.nav-section-title {
    padding: 16px 20px 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 450;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-link:hover {
    color: var(--text);
    background: var(--bg);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
    border-left-color: var(--primary);
    font-weight: 600;
}

.nav-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-link.active svg {
    opacity: 1;
}

/* ===== Content ===== */
.content {
    flex: 1;
    padding: 32px 40px 80px;
    max-width: 960px;
    margin-left: var(--sidebar-width);
    margin-right: auto;
}

.section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    margin-bottom: 28px;
}

.section-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===== Hero Card ===== */
.hero-card {
    display: flex;
    gap: 32px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 28px;
    color: white;
    overflow: hidden;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    width: 280px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    opacity: 0.95;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    background: #F0F0F0;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

/* ===== Quick Links ===== */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.quick-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.quick-link-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.quick-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.quick-link-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.quick-link-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Info Cards ===== */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.info-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.info-card ul, .info-card ol {
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 6px;
}

/* ===== Table ===== */
.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    overflow: hidden;
}

.table-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead th {
    background: var(--bg);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}

tbody tr:hover {
    background: var(--bg);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* ===== Alerts ===== */
.alert {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert ul {
    padding-left: 18px;
    margin-top: 8px;
}

.alert li {
    margin-bottom: 4px;
}

.alert-danger {
    background: var(--red-bg);
    border: 1px solid #FECACA;
    color: #991B1B;
}

.alert-danger svg {
    color: var(--red);
}

.alert-warning {
    background: var(--yellow-bg);
    border: 1px solid #FDE68A;
    color: #92400E;
}

.alert-warning svg {
    color: var(--yellow);
}

.alert-info {
    background: var(--blue-bg);
    border: 1px solid #BFDBFE;
    color: #1E40AF;
}

.alert-info svg {
    color: #2563EB;
}

/* ===== Models ===== */
.model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.model-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    position: relative;
}

.model-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.model-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.model-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.model-specs {
    list-style: none;
    padding: 0;
}

.model-specs li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    border-top: 1px solid var(--border-light);
}

/* ===== Features ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.feature-item svg {
    flex-shrink: 0;
}

/* ===== Grids ===== */
.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.norms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.role-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.role-card h4 {
    color: var(--primary);
    margin-bottom: 6px;
}

.role-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Steps ===== */
.step-list {
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Images ===== */
.image-viewer {
    text-align: center;
    margin-bottom: 20px;
}

.image-viewer img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: zoom-in;
    transition: var(--transition);
}

.image-viewer img:hover {
    box-shadow: var(--shadow-md);
}

.image-caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===== Schema Tabs ===== */
.schema-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.schema-tab {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    color: var(--text-secondary);
}

.schema-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.schema-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.schema-content {
    display: none;
    text-align: center;
}

.schema-content.active {
    display: block;
}

.schema-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ===== Keyboard ===== */
kbd {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 13px;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ===== Sensor ===== */
.sensor-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.sensor-card h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.sensor-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Status Colors ===== */
.status-colors {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-red {
    background: var(--red-bg);
}

.status-red .status-dot {
    background: var(--red);
}

.status-yellow {
    background: var(--yellow-bg);
}

.status-yellow .status-dot {
    background: var(--yellow);
}

.status-green {
    background: var(--green-bg);
}

.status-green .status-dot {
    background: var(--green);
}

.status-item strong {
    display: block;
    font-size: 14px;
}

.status-item p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Display Elements ===== */
.display-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.display-el {
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.display-el strong {
    color: var(--text);
}

/* ===== Param Quick ===== */
.param-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.param-quick-item {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.param-quick-item strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.param-quick-item p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Connectors ===== */
.connector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.connector-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.connector-label {
    font-weight: 600;
    color: var(--primary);
}

/* ===== Components ===== */
.component-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.component-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ===== Error Table ===== */
.error-code {
    background: var(--red-bg);
    color: var(--red);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    margin-left: var(--sidebar-width);
    padding: 20px 40px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    /* Sidebar hidden by default on mobile */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Content centered, no sidebar offset */
    .content {
        margin-left: 0;
        margin-right: 0;
        margin: 0 auto;
    }

    /* Footer full width */
    .footer {
        margin-left: 0;
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .display-elements {
        grid-template-columns: 1fr;
    }

    .norms-grid,
    .two-col,
    .three-col,
    .role-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 24px 16px 80px;
    }

    .header-inner {
        padding: 0 12px;
        gap: 12px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-sub {
        display: none;
    }

    .btn-download {
        padding: 8px 10px;
        font-size: 0;
    }

    .btn-download svg {
        width: 18px;
        height: 18px;
    }

    .section-header h1 {
        font-size: 22px;
    }

    .hero-card {
        padding: 24px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .connector-grid,
    .component-list,
    .param-quick {
        grid-template-columns: 1fr;
    }

    .schema-tabs {
        flex-direction: column;
    }

    table {
        font-size: 13px;
    }

    thead th, tbody td {
        padding: 8px 10px;
    }
}
