﻿/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title .icon {
    color: var(--primary);
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.meta-line .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ===== BUTTONS ===== */
button,
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

button,
.button,
.btn {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-xs);
}

button:hover,
.button:hover,
.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: #fff;
    text-decoration: none;
}

button:active,
.button:active,
.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-xs);
}

button:disabled,
.button:disabled,
.btn:disabled,
button.is-loading,
.btn.is-loading {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border-light);
    color: var(--text);
    border-color: #cbd5e1;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #b91c1c;
    color: #fff;
}

.btn-ghost,
.btn-link {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
    padding: 0.5rem 0.75rem;
}

.btn-ghost:hover,
.btn-link:hover {
    background: var(--primary-light);
    transform: none;
    box-shadow: none;
    color: var(--primary-hover);
}

.btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-sm);
}

/* Loading spinner trong button */
.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ===== FORMS ===== */
label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
input[type="search"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: #fff;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.check-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 400;
}

.check-line input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-grid {
    display: grid;
    gap: 1rem;
    background: var(--surface);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    align-items: end;
}

.filter-form button {
    height: 42px;
}

.text-danger {
    color: var(--danger);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* ===== CARDS ===== */
.card,
.news-card,
.stat-card,
.chart-panel,
.login-card,
.article-detail {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card {
    overflow: hidden;
}

.news-card:hover,
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #dbeafe;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.03);
}

.news-card-body {
    padding: 1.1rem;
}

.news-card-body h2,
.news-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0.4rem 0;
}

.news-card-body h2 a,
.news-card-body h3 a {
    color: var(--text);
}

.news-card-body h2 a:hover,
.news-card-body h3 a:hover {
    color: var(--primary);
    text-decoration: none;
}

.news-card-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

.badge-success {
    color: var(--success);
    background: var(--success-light);
}

.badge-warning {
    color: #b45309;
    background: var(--warning-light);
}

.badge-danger {
    color: var(--danger);
    background: var(--danger-light);
}

/* Slider grid */
.slider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* News list row */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-item-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #dbeafe;
}

.news-item-row img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.news-item-row h2,
.news-item-row h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.news-item-row h2 a,
.news-item-row h3 a {
    color: var(--text);
}

.news-item-row h2 a:hover,
.news-item-row h3 a:hover {
    color: var(--primary);
    text-decoration: none;
}

.news-item-row p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Sidebar list */
.simple-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.simple-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.simple-list li:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-xs);
}

.simple-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
}

.simple-list a:hover {
    color: var(--primary);
    text-decoration: none;
}

.side-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.5rem;
}

/* ===== DASHBOARD KPI ===== */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }
.stat-card:nth-child(5) { animation-delay: 0.25s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #7c3aed);
    border-radius: var(--radius) var(--radius) 0 0;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.stat-card h3 {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
}

.stat-card p {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.chart-panel {
    padding: 1.5rem;
    margin-top: 0;
}

.chart-panel h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== TABLE ===== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    background: var(--surface);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.data-table th {
    background: var(--border-light);
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background var(--transition-fast);
}

.data-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.data-table tbody tr:hover {
    background: var(--primary-light);
}

.data-table .actions-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.data-table .actions-cell a {
    font-size: 0.82rem;
    font-weight: 500;
}

.inline-form {
    display: inline;
}

.inline-form button {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    background: var(--danger-light);
    color: var(--danger);
    box-shadow: none;
}

.inline-form button:hover {
    background: var(--danger);
    color: #fff;
    transform: none;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 0.4rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.5rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.pagination a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

/* ===== ARTICLE DETAIL ===== */
.article-detail {
    padding: 0;
    max-width: 720px;
    margin: 0 auto;
    border: none;
    box-shadow: none;
    background: transparent;
}

.article-detail h1 {
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.meta-category {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.related-title {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.breadcrumb-current {
    color: var(--text-muted);
}

.article-main-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 1.25rem 0;
}

.article-content {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-secondary);
}

.article-content h2,
.article-content h3 {
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
}

.article-content img {
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.article-tags .tag-hash {
    font-size: 0.85rem;
}

.article-detail .article-tags .tag-hash {
    font-size: 1rem;
}

.article-content a.tag-hash {
    font-weight: 600;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-detail .article-content a.tag-hash {
    font-size: inherit;
    line-height: inherit;
}

.article-inline-tags {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.share-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-links a,
.share-links .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: var(--border-light);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.share-links a:hover,
.share-links .share-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.share-btn--facebook:hover { background: #e7f0ff; color: #1877f2; }
.share-btn--twitter:hover { background: #f0f0f0; color: #000; }
.share-btn--zalo:hover { background: #e8f4ff; color: #0068ff; }
.share-btn--copy.is-copied { background: var(--primary-light); color: var(--primary); }

/* ===== ARTICLE ENGAGEMENT (like + share) ===== */
.article-engagement {
    margin: 1.75rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--border);
}

.article-engagement-like {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.engagement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.engagement-btn:hover:not(:disabled) {
    border-color: #e11d48;
    color: #e11d48;
    background: #fff1f2;
}

.engagement-btn.is-liked {
    border-color: #e11d48;
    background: #ffe4e6;
    color: #e11d48;
}

.engagement-btn:disabled {
    cursor: default;
    opacity: 1;
}

.engagement-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.engagement-count {
    font-variant-numeric: tabular-nums;
}

.engagement-stat {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-engagement-share {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.engagement-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}

/* ===== ARTICLE RELATED (detail page) ===== */
.article-related {
    max-width: 720px;
    margin: 2.5rem auto 0;
    padding: 0 1rem 2rem;
}

.article-related-header {
    margin-bottom: 1rem;
}

.article-related-list {
    margin-top: 0.25rem;
}

/* ===== TOOLBAR ===== */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 3.5rem 2rem;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--border-light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.empty-state p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 280px;
    max-width: 400px;
    pointer-events: auto;
    animation: toastSlideIn 0.35s ease-out;
}

.toast.is-leaving {
    animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--danger); }
.toast-warning .toast-icon { color: var(--warning); }
.toast-info .toast-icon { color: var(--info); }

.toast-message {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

/* ===== LOADING OVERLAY ===== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-loader.is-active {
    opacity: 1;
    visibility: visible;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.loader-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, #e2e8f0 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #7c3aed);
    z-index: 10001;
    width: 0;
    transition: width 0.3s ease;
}

/* Privacy / Error pages */
.content-page {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    max-width: 720px;
    margin: 0 auto;
}

.static-page-content h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.75rem 0 0.65rem;
    color: var(--text);
}

.static-page-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
}

.static-page-content ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.static-page-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
}

.static-page-content a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.static-page-content a:hover {
    color: var(--primary);
}

.error-page {
    text-align: center;
    padding: 3rem 2rem;
}

.error-page h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--danger);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.error-page code {
    background: var(--border-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}
