/* GoodSync Help Center - Shared Stylesheet
 * Used by all pages under /help/
 * Depends on css/common.css being loaded first.
 */

/* ============================================================
 * Layout
 * ============================================================ */
.help-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 220px;
    gap: 48px;
    align-items: flex-start;
}
.help-shell.no-toc-right { grid-template-columns: 260px minmax(0, 1fr); }
.help-shell.full { grid-template-columns: minmax(0, 1fr); padding-top: 0; }

.help-page {
    padding-top: 100px;
    padding-bottom: 80px;
    background: #fafbfc;
    min-height: 100vh;
}

/* ============================================================
 * Sidebar (left navigation)
 * ============================================================ */
.help-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 20px 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    font-size: 14px;
}
.help-sidebar-title {
    padding: 4px 20px 12px;
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 11px;
    font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.help-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.help-sidebar li { margin: 0; }
.help-sidebar a {
    display: block;
    padding: 8px 20px;
    color: #4a4a4a;
    font-size: 13.5px;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s ease;
}
.help-sidebar a:hover {
    color: var(--primary-blue);
    background: rgba(4, 90, 255, 0.04);
}
.help-sidebar a.active {
    color: var(--primary-blue);
    background: rgba(4, 90, 255, 0.06);
    border-left-color: var(--primary-blue);
    font-weight: 600;
}
.help-sidebar .help-sidebar-group {
    padding: 4px 20px;
    margin: 16px 0 6px;
    font-size: 11px;
    font-weight: 700;
    color: #9b9b9b;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.help-sidebar .help-sidebar-sub a {
    padding-left: 36px;
    font-size: 13px;
}

/* ============================================================
 * Main content
 * ============================================================ */
.help-main {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 48px 56px;
    min-width: 0;
}

/* Breadcrumbs */
.help-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    font-size: 13px;
    color: #6b6b6b;
    list-style: none;
    padding: 0;
}
.help-breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.help-breadcrumb li:not(:last-child)::after {
    content: '›';
    color: #c4c4c4;
    margin-left: 0;
}
.help-breadcrumb a {
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.2s ease;
}
.help-breadcrumb a:hover { color: var(--primary-blue); }
.help-breadcrumb li:last-child { color: #0A0E27; font-weight: 600; }

/* Doc title */
.help-main > h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0A0E27;
    letter-spacing: -1.2px;
    line-height: 1.2;
    margin: 0 0 12px;
}
.help-doc-meta {
    color: #6b6b6b;
    font-size: 14px;
    margin: 0 0 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Headings inside content */
.help-main h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0A0E27;
    letter-spacing: -0.6px;
    line-height: 1.3;
    margin: 56px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    scroll-margin-top: 100px;
}
.help-main h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
.help-main h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0A0E27;
    letter-spacing: -0.3px;
    line-height: 1.4;
    margin: 32px 0 12px;
    scroll-margin-top: 100px;
}
.help-main h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0A0E27;
    margin: 24px 0 10px;
    scroll-margin-top: 100px;
}

/* Anchor link on hover */
.help-anchor {
    color: #c4c4c4;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.help-main h2:hover .help-anchor,
.help-main h3:hover .help-anchor,
.help-main h4:hover .help-anchor { opacity: 1; }
.help-anchor:hover { color: var(--primary-blue); }

/* Paragraphs and lists */
.help-main p {
    color: #2c2c2c;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 16px;
}
.help-main ul,
.help-main ol {
    color: #2c2c2c;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 16px;
    padding-left: 24px;
}
.help-main li { margin-bottom: 6px; }
.help-main li > ul,
.help-main li > ol { margin-top: 6px; margin-bottom: 6px; }

/* Inline code */
.help-main code {
    background: #f4f6fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'SF Mono', Monaco, Menlo, Consolas, 'Courier New', monospace;
    font-size: 0.88em;
    color: #d6336c;
    word-break: break-word;
}
/* Code blocks */
.help-main pre {
    background: #0A0E27;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'SF Mono', Monaco, Menlo, Consolas, 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #e6e9ff;
}
.help-main pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* Tables */
.help-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}
.help-main thead { background: #fafbfc; }
.help-main th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    color: #0A0E27;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.help-main td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #2c2c2c;
    vertical-align: top;
}
.help-main tr:last-child td { border-bottom: none; }

/* Blockquote */
.help-main blockquote {
    margin: 20px 0;
    padding: 14px 20px;
    border-left: 4px solid var(--primary-blue);
    background: rgba(4, 90, 255, 0.04);
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.8;
    border-radius: 0 8px 8px 0;
}
.help-main blockquote p:last-child { margin-bottom: 0; }

/* Links inside content */
.help-main a:not(.help-anchor):not(.btn) {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(4, 90, 255, 0.25);
    transition: border-color 0.2s ease;
}
.help-main a:not(.help-anchor):not(.btn):hover {
    border-bottom-color: var(--primary-blue);
}

/* Callouts: note / tip / warning */
.help-callout {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.75;
}
.help-callout-icon {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}
.help-callout p { margin: 0; }
.help-callout p + p { margin-top: 8px; }
.help-callout-note { background: #f0f5ff; border-color: rgba(4, 90, 255, 0.18); color: #1e3a8a; }
.help-callout-note .help-callout-icon { color: #1e3a8a; }
.help-callout-tip { background: #f0fdf4; border-color: rgba(34, 197, 94, 0.22); color: #14532d; }
.help-callout-tip .help-callout-icon { color: #16a34a; }
.help-callout-warning { background: #fff7ed; border-color: rgba(245, 158, 11, 0.25); color: #78350f; }
.help-callout-warning .help-callout-icon { color: #d97706; }
.help-callout-danger { background: #fef2f2; border-color: rgba(239, 68, 68, 0.25); color: #7f1d1d; }
.help-callout-danger .help-callout-icon { color: #dc2626; }

/* Images inside content */
.help-main img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 16px 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================================
 * On This Page (right TOC)
 * ============================================================ */
.help-toc-right {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    font-size: 13px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 4px 0;
}
.help-toc-right-title {
    font-size: 11px;
    font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 12px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0 0 10px;
}
.help-toc-right ul { list-style: none; padding: 0; margin: 0; }
.help-toc-right li { margin: 0; }
.help-toc-right a {
    display: block;
    padding: 5px 12px;
    color: #6b6b6b;
    font-size: 13px;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.18s ease;
    line-height: 1.5;
}
.help-toc-right a:hover { color: var(--primary-blue); }
.help-toc-right a.active {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    background: rgba(4, 90, 255, 0.04);
    font-weight: 600;
}
.help-toc-right .toc-h3 a { padding-left: 24px; font-size: 12.5px; }

/* ============================================================
 * Help Center Index Page
 * ============================================================ */
.help-hero {
    text-align: center;
    padding: 64px 32px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.help-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #0A0E27;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
}
.help-hero p {
    font-size: 17px;
    color: #6b6b6b;
    margin: 0 auto 32px;
    max-width: 640px;
}
.help-search-wrap {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}
.help-search-wrap input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    background: #ffffff;
    font-size: 15px;
    color: #0A0E27;
    box-shadow: 0 4px 16px rgba(10, 14, 39, 0.04);
    transition: all 0.2s ease;
    outline: none;
}
.help-search-wrap input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 18px rgba(4, 90, 255, 0.12);
}
.help-search-wrap svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #9b9b9b;
}

.help-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.help-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.help-card:hover {
    border-color: rgba(4, 90, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(4, 90, 255, 0.08);
}
.help-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.help-card-icon svg { width: 24px; height: 24px; }
.help-card h2 {
    font-size: 19px;
    font-weight: 700;
    color: #0A0E27;
    margin: 0;
    letter-spacing: -0.3px;
}
.help-card p {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.help-card-foot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
}
.help-card-foot svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.help-card:hover .help-card-foot svg { transform: translateX(3px); }

.help-popular {
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 32px;
}
.help-popular-title {
    font-size: 13px;
    font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.help-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.help-popular-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #0A0E27;
    font-size: 14px;
    transition: all 0.2s ease;
}
.help-popular-item:hover {
    border-color: rgba(4, 90, 255, 0.2);
    color: var(--primary-blue);
    transform: translateX(2px);
}
.help-popular-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(4, 90, 255, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.help-popular-item-icon svg { width: 16px; height: 16px; }

/* ============================================================
 * Pagination at bottom of doc pages
 * ============================================================ */
.help-pager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.help-pager-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 22px;
    background: #fafbfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}
.help-pager-link:hover {
    border-color: rgba(4, 90, 255, 0.2);
    background: rgba(4, 90, 255, 0.03);
}
.help-pager-link.next { text-align: right; }
.help-pager-link span {
    font-size: 11px;
    font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.help-pager-link strong {
    font-size: 15px;
    color: #0A0E27;
    font-weight: 600;
}
.help-pager-link.disabled { visibility: hidden; }

/* ============================================================
 * FAQ-specific styles (accordion)
 * ============================================================ */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.faq-chip {
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s ease;
}
.faq-chip:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-1px);
}
.faq-section {
    margin-bottom: 36px;
}
.faq-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0A0E27;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(4, 90, 255, 0.06) 0%, rgba(4, 90, 255, 0) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 10px 10px 0;
    scroll-margin-top: 100px;
}
.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(4, 90, 255, 0.18); }
.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0A0E27;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(4, 90, 255, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease;
}
.faq-item[open] summary { color: var(--primary-blue); }
.faq-item[open] summary::after { content: '−'; transform: rotate(0deg); }
.faq-item-content {
    padding: 0 22px 20px;
    color: #2c2c2c;
    font-size: 14.5px;
    line-height: 1.85;
}
.faq-item-content > *:first-child { margin-top: 0; }
.faq-item-content > *:last-child { margin-bottom: 0; }
.faq-item-content p { margin: 0 0 12px; }
.faq-item-content ul,
.faq-item-content ol { padding-left: 22px; margin: 0 0 12px; }
.faq-item-content li { margin-bottom: 4px; }
.faq-item-content code {
    background: #f4f6fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'SF Mono', Monaco, Menlo, Consolas, monospace;
    font-size: 0.88em;
    color: #d6336c;
}
.faq-item-content a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(4, 90, 255, 0.25);
}
.faq-item-content a:hover { border-bottom-color: var(--primary-blue); }

/* Mobile sidebar toggle */
.help-sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 24px rgba(4, 90, 255, 0.35);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.help-sidebar-toggle svg { width: 22px; height: 22px; }

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 1200px) {
    .help-shell { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; }
    .help-toc-right { display: none; }
    .help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .help-shell {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
    }
    .help-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding-top: 80px;
    }
    .help-sidebar.open { transform: translateX(0); }
    .help-sidebar-toggle { display: flex; }
    .help-main { padding: 32px 24px; }
    .help-main > h1 { font-size: 28px; }
    .help-main h2 { font-size: 22px; }
    .help-main h3 { font-size: 17px; }
    .help-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .help-popular-grid { grid-template-columns: 1fr; }
    .help-pager { grid-template-columns: 1fr; }
    .help-hero h1 { font-size: 32px; }
    .help-hero { padding: 40px 20px 32px; }
}

/* Sticky scroll-margin-top adjustment for navbar */
.help-main h2, .help-main h3, .help-main h4, .faq-section-title {
    scroll-margin-top: 96px;
}

.help-search-wrap--spaced { margin-bottom: 28px; }


/* connect-manual.html: 子側邊欄 + 配置參數列表 */
.help-sidebar-sub { list-style: none; padding-left: 14px; margin: 6px 0 8px; border-left: 2px solid #eef0f3; }
.help-sidebar-sub li { margin: 2px 0; }
.help-sidebar-sub a { font-size: 12.5px; color: #6b7280; padding: 3px 8px; }
.help-sidebar-sub a:hover { color: #F74654; }

.help-settings-list { margin: 16px 0 24px; }
.help-settings-list dt { margin-top: 14px; }
.help-settings-list dt code { background: #f6f8fb; border: 1px solid #e6e9ee; padding: 4px 8px; border-radius: 4px; font-size: 13px; color: #045AFF; word-break: break-all; }
.help-settings-list dd { margin: 6px 0 0 0; padding-left: 16px; color: #4b5563; line-height: 1.7; border-left: 3px solid #f0f2f5; }
.help-settings-list dd code { background: #f6f8fb; padding: 1px 5px; border-radius: 3px; font-size: 12.5px; }

/* control-center figure (screenshot) */
.help-figure { margin: 16px 0 24px; padding: 0; }
.help-figure img { display: block; max-width: 100%; height: auto; border: 1px solid #e6e9ee; border-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.help-figure figcaption { margin-top: 8px; font-size: 12.5px; color: #6b7280; text-align: center; }

/* visually-hidden helper for sectional H2 grouping */
.visually-hidden-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* manual icon table for action/state icons */
.help-icon-table { width: 100%; margin: 12px 0 24px; border-collapse: collapse; font-size: 14px; }
.help-icon-table td { padding: 8px 12px; border-bottom: 1px solid #eef0f3; vertical-align: middle; }
.help-icon-table td.ic { width: 96px; white-space: nowrap; }
.help-icon-table td.ic img { width: 18px; height: 18px; vertical-align: middle; margin-right: 2px; }
.help-icon-table td:last-child { color: #4b5563; line-height: 1.6; }
.help-section h4 { margin: 22px 0 10px; font-size: 16px; color: #111827; }

/* manual commands list (dl) and kbd shortcut */
.help-cmd-list { margin: 12px 0 24px; }
.help-cmd-list dt { margin-top: 16px; padding: 6px 10px; background: #f6f8fb; border-left: 3px solid #045AFF; border-radius: 0 4px 4px 0; font-size: 13.5px; line-height: 1.6; }
.help-cmd-list dt code { background: transparent; padding: 0; color: #045AFF; font-weight: 600; }
.help-cmd-list dd { margin: 8px 0 0 14px; color: #4b5563; line-height: 1.7; }
kbd { display: inline-block; padding: 1px 6px; margin: 0 2px; font: 12px/1.4 "SFMono-Regular",Consolas,Menlo,monospace; color: #111827; background: #fff; border: 1px solid #cbd5e1; border-bottom-width: 2px; border-radius: 3px; box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
