/* ============================================================
   Guide Page Supplemental Styles
   Applies on top of main.css + docs.css
   ============================================================ */

/* === Table inside tutorial-mode-compare === */
.guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.guide-table thead tr {
    background: #f8fafc;
    text-align: left;
}
.guide-table th {
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
    color: #374151;
}
.guide-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    line-height: 1.5;
}
.guide-table tbody tr:last-child td {
    border-bottom: none;
}
.guide-table td a {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.guide-table td code,
.guide-table td strong {
    font-size: 13px;
}

/* === step-note & step-tip inside section === */
.step-content .step-note,
.step-content .step-tip {
    margin-top: 14px;
}

/* === faq-answer link style === */
.step-content a {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* === Responsive === */
@media (max-width: 640px) {
    .guide-table th,
    .guide-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    .guide-table thead { display: none; }
    .guide-table td {
        display: block;
        border-bottom: none;
        padding: 6px 10px;
    }
    .guide-table tr {
        border-bottom: 1px solid #f0f0f0;
        display: block;
        padding: 8px 0;
    }
}
