.kb-header-hero {
    background-color: var(--surface-container);
    padding: 6rem 0 0 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.kb-header-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.kb-text-side {
    flex: 1;
    padding-bottom: 4rem;
    z-index: 2;
}

.kb-text-side h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--on-surface);
}

.kb-text-side p {
    font-size: 1.25rem;
    color: var(--on-surface-muted);
    line-height: 1.6;
    max-width: 600px;
}

.kb-visual-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.kb-captain-img {
    width: auto;
    height: auto;
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    display: block;
    margin-bottom: -10px;
}

.kb-layout-section {
    padding: 4rem 0;
}

.kb-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}

.kb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-container);
    padding-bottom: 0.75rem;
    color: var(--on-surface);
    font-weight: 700;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.search-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    padding-right: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--surface);
    color: var(--on-surface);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-container);
    color: var(--on-surface);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.tag-chip:hover, .tag-chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tag-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-chip:hover .tag-count, .tag-chip.active .tag-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.kb-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.kb-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kb-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color-alpha);
}

.kb-card-img-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: var(--surface-container);
}

.kb-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kb-card:hover .kb-card-img-wrapper img {
    transform: scale(1.05);
}

.kb-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.type-article { background: var(--primary-color); }
.type-update { background: var(--secondary-color); }

.kb-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kb-meta {
    font-size: 0.85rem;
    color: var(--on-surface-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.kb-dot { color: var(--border-color); }

.kb-main-tag {
    color: var(--primary-color);
    font-weight: 700;
}

.kb-title-link {
    text-decoration: none;
    color: var(--on-surface);
}

.kb-title-link h2, .kb-title-link h4 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.2s;
}

.kb-card:hover .kb-title-link h2 {
    color: var(--primary-color);
}

.kb-excerpt {
    font-size: 1rem;
    color: var(--on-surface-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.kb-read-more {
    color: var(--on-surface);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    margin-top: auto;
    transition: gap 0.2s, color 0.2s;
}

.kb-read-more:hover {
    gap: 10px;
    color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 5rem;
}

.article-page {
    padding: 4rem 0;
}

.article-container {
    max-width: 1280px;
    overflow-x: hidden;
}

.article-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 5rem;
}

.article-header-simple {
    margin-bottom: 3rem;
}

.article-header-simple h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--on-surface);
}

.article-intro {
    font-size: 1.15rem;
    color: var(--on-surface-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--on-surface-muted);
    font-weight: 500;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--on-surface);
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 3.5rem 0 1.5rem;
    color: var(--on-surface);
    font-weight: 800;
    line-height: 1.2;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--on-surface);
    font-weight: 700;
}

.article-body ul, .article-body ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.article-body img.content-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.content-quote {
    border-left: 5px solid var(--primary-color);
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: var(--surface-container);
    border-radius: 0 16px 16px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--on-surface);
}

.content-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    color: var(--on-surface-muted);
}

.article-body pre {
    background: #1e1e1e;
    color: #e0e0e0;
    padding: 2rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2.5rem 0;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid #333;
}

.article-body code {
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    background: var(--surface-container);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--primary-color);
}

.article-body pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 2.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.article-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    font-size: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: none;
}

.article-body th {
    background-color: var(--surface-container);
    color: var(--on-surface);
    font-weight: 700;
    text-align: left;
    padding: 16px 24px;
    border-bottom: 2px solid var(--border-color);
}

.article-body td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--on-surface);
    vertical-align: top;
}

.article-body tr:last-child td {
    border-bottom: none;
}

.article-body tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

[data-theme="dark"] .article-body tr:nth-child(even) {
    background-color: rgba(255,255,255,0.03);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gwmenu {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: var(--surface-container);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.gwmenu-separator .material-icons-round {
    font-size: 14px;
    color: var(--on-surface-muted);
    vertical-align: middle;
}

.gwmenu-item {
    color: var(--on-surface);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: var(--on-surface);
}

.share-btn:hover {
    background: var(--surface-container);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.share-btn svg, .share-btn img {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

[data-theme="dark"] .share-btn img {
    filter: brightness(0) invert(1);
}

.resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list li {
    margin-bottom: 1rem;
}

.resources-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: var(--on-surface);
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.2s;
    font-weight: 500;
}

.resources-list a:hover {
    color: var(--primary-color);
}

.inline-icon {
    font-size: 1.2em;
    vertical-align: text-bottom;
    margin: 0 4px;
    color: var(--primary-color);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    text-decoration: none;
    color: var(--on-surface-muted);
    font-size: 0.95rem;
    display: block;
    padding: 4px 0;
    transition: color 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.toc-list a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.toc-level-3 {
    margin-left: 15px;
    font-size: 0.9rem;
}

.toc-level-4 {
    margin-left: 30px;
    font-size: 0.85rem;
}

.support-image {
    width: 100%;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: block;
}

.article-sidebar .sidebar-widget {
    margin-bottom: 4rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
}

.mobile-toc {
    display: none !important;
    margin-top: 2rem;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .kb-container {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }
    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .article-sidebar {
        order: 2;
    }
    .mobile-toc {
        display: block !important;
    }
    .sidebar-toc {
        display: none !important;
    }
    .article-main {
        min-width: 0;
        max-width: 100%;
    }
    .article-body {
        overflow-wrap: break-word;
    }
    .article-body img,
    .article-body video,
    .article-body iframe {
        max-width: 100%;
        height: auto;
    }
    .article-body pre {
        overflow-x: auto;
        white-space: pre;
        max-width: 100%;
    }
    .table-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .kb-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kb-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .kb-text-side {
        padding-bottom: 0;
    }
    .kb-text-side p {
        margin: 0 auto;
    }
    .kb-visual-side {
        justify-content: center;
        width: 100%;
    }
    .kb-captain-img {
        max-height: 300px;
    }
    .kb-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }
    .kb-grid, .kb-grid.three-col {
        grid-template-columns: 1fr;
    }
    .article-header-simple h1 {
        font-size: 2.2rem;
    }
    .article-meta-row {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media print {
    header.site-header, 
    footer.site-footer, 
    .article-sidebar, 
    .related-section, 
    .article-meta-row, 
    .btn, 
    .cookie-banner, 
    .floating-settings {
        display: none !important;
    }
    
    body, .article-page, .article-main, .container {
        background: white !important;
        color: black !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        display: block !important;
    }

    .article-layout {
        display: block !important;
    }

    .article-header-simple {
        margin-bottom: 20px;
        border-bottom: 2px solid black;
        padding-bottom: 20px;
    }

    .article-header-simple h1 {
        font-size: 24pt;
        color: black;
        margin-bottom: 10px;
        page-break-after: avoid;
    }

    .article-intro {
        font-size: 14pt;
        color: #333;
        font-style: italic;
        margin-bottom: 0;
    }

    .article-body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }

    .article-body p {
        orphans: 3;
        widows: 3;
    }

    .article-body a {
        text-decoration: underline;
        color: black !important;
        font-weight: normal;
    }

    .article-body a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }

    .article-body h2, .article-body h3 {
        color: black;
        page-break-after: avoid;
    }

    .article-body pre, .article-body blockquote {
        border: 1px solid #ccc;
        background: none !important;
        color: black !important;
        page-break-inside: avoid;
    }

    .article-body table, .article-body th, .article-body td {
        border: 1px solid black;
        background: none !important;
        color: black !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .video-container {
        display: none;
    }
}

.article-body img,
.content-body img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
}

.kb-captain-img,
.kb-visual-side img,
.sidebar-widget img {
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
}
.breadcrumbs { padding: 2rem 0 1.25rem; margin-bottom: 0.5rem; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; font-size: 0.875rem; color: var(--on-surface-muted); line-height: 1.4; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.25rem; min-height: 28px; }
.breadcrumbs a { color: var(--primary-color); text-decoration: none; transition: color 0.2s; padding: 0.2rem 0; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .material-icons-round { font-size: 14px; opacity: 0.5; }
.breadcrumbs [aria-current="page"] { color: var(--on-surface); font-weight: 500; }
@media (max-width: 600px) { .breadcrumbs { padding: 1.5rem 0 1rem; } .breadcrumbs ol { font-size: 0.8rem; } }

.article-type-badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; background: var(--primary-color); color: white; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }

.article-hero-img { margin: 1.5rem 0 2.5rem; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-faq { margin-top: 3rem; padding-top: 2.5rem; border-top: 2px solid var(--border-color); }
.article-faq h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--on-surface); }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; background: var(--surface); transition: box-shadow 0.2s; }
.faq-item[open] { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; list-style: none; font-weight: 600; font-size: 1rem; color: var(--on-surface); user-select: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { transition: transform 0.3s ease; color: var(--primary-color); flex-shrink: 0; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.5rem; }
.faq-answer p { font-size: 0.975rem; line-height: 1.7; color: var(--on-surface-muted); margin: 0; }

/* Location page styles moved to /assets/css/locations.css */

/* ===== SHORTCODE ELEMENTS ===== */

/* Callout boxes: [info], [warning], [tip], [success] */
.sc-callout { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: 12px; margin: 1.5rem 0; border-left: 4px solid; align-items: flex-start; }
.sc-callout--info    { background: color-mix(in srgb, #2196F3 10%, var(--surface)); border-color: #2196F3; }
.sc-callout--warning { background: color-mix(in srgb, #FF9800 10%, var(--surface)); border-color: #FF9800; }
.sc-callout--tip     { background: color-mix(in srgb, #4CAF50 10%, var(--surface)); border-color: #4CAF50; }
.sc-callout--success { background: color-mix(in srgb, #4CAF50 10%, var(--surface)); border-color: #4CAF50; }
.sc-callout__icon { font-size: 1.4rem !important; flex-shrink: 0; margin-top: 0.1rem; }
.sc-callout--info .sc-callout__icon    { color: #2196F3; }
.sc-callout--warning .sc-callout__icon { color: #FF9800; }
.sc-callout--tip .sc-callout__icon     { color: #4CAF50; }
.sc-callout--success .sc-callout__icon { color: #4CAF50; }
.sc-callout__body { flex: 1; }
.sc-callout__title { display: block; margin-bottom: 0.3rem; font-size: 0.95rem; color: var(--on-surface); }
.sc-callout__body > div { font-size: 0.925rem; line-height: 1.65; color: var(--on-surface-muted); }

/* CTA button */
.sc-cta-wrap { margin: 1.5rem 0; }
.sc-cta { display: inline-flex; }

/* Two-column layout */
.sc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.5rem 0; }
.sc-col > *:first-child { margin-top: 0; }
.sc-col > *:last-child  { margin-bottom: 0; }
@media (max-width: 640px) { .sc-cols { grid-template-columns: 1fr; gap: 1rem; } }

/* Step-by-step */
.sc-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.sc-step { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 1.5rem; background: var(--surface-container); border-radius: 12px; border: 1px solid var(--border-color); }
.sc-step__num { width: 2rem; height: 2rem; flex-shrink: 0; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }
.sc-step__body { flex: 1; }
.sc-step__title { display: block; font-size: 1rem; margin-bottom: 0.35rem; color: var(--on-surface); }
.sc-step__body > div { font-size: 0.9rem; color: var(--on-surface-muted); line-height: 1.65; }

/* Checklist */
.sc-checklist { list-style: none; padding: 0; margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.sc-check-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--on-surface-muted); line-height: 1.5; }
.sc-check-item .material-icons-round { font-size: 18px; color: #4CAF50; flex-shrink: 0; margin-top: 0.1rem; }

/* Icon card */
.sc-icon-card { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.75rem; background: var(--surface-container); border: 1px solid var(--border-color); border-radius: 16px; margin: 1.25rem 0; }
.sc-icon-card__icon { font-size: 2rem !important; color: var(--primary-color); }
.sc-icon-card__title { font-size: 1.05rem; color: var(--on-surface); }
.sc-icon-card__body { font-size: 0.9rem; color: var(--on-surface-muted); line-height: 1.65; }

/* Highlight */
.sc-highlight { background: color-mix(in srgb, var(--primary-color) 18%, transparent); color: var(--on-surface); border-radius: 4px; padding: 0.1em 0.3em; }

/* Table */
.sc-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: 12px; border: 1px solid var(--border-color); }
.sc-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.sc-table th { background: var(--surface-container-high); color: var(--on-surface); font-weight: 600; padding: 0.75rem 1rem; text-align: left; border-bottom: 2px solid var(--border-color); }
.sc-table td { padding: 0.7rem 1rem; color: var(--on-surface-muted); border-bottom: 1px solid var(--border-color); }
.sc-table tr:last-child td { border-bottom: none; }
.sc-table tbody tr:hover { background: var(--surface-container); }
