.status-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .status-table th, .status-table td {
            padding: 0.75rem;
            border: 1px solid var(--border-color, #dee2e6);
            vertical-align: top;
        }
        .status-table th {
            background-color: var(--light-gray, #f2f2f2);
            font-weight: 600;
            position: sticky;
            top: 0;
        }
        .status-code {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            color: #0d6efd;
            white-space: nowrap;
        }
        .copy-code-btn {
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
            transition: 0.2s;
            margin-left: 6px;
        }
        .copy-code-btn:hover {
            color: var(--primary-color);
        }
        .filter-badge {
            cursor: pointer;
            transition: all 0.2s;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .filter-badge.active {
            background-color: var(--primary-color);
            color: white;
        }
        .search-highlight {
            background-color: #fff3b0;
        }
        .category-header {
            background-color: #e9ecef;
            font-weight: 700;
        }
        .insight-box {
            background-color: #f8f9fc;
            border-left: 4px solid #0d6efd;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0.5rem;
        }
        .stats-row {
            font-size: 0.9rem;
            font-weight: 500;
        }
        .status-message {
            font-weight: 500;
            color: #2c3e50;
        }
        .rfc-ref {
            font-size: 0.8rem;
            color: #5e6f8d;
        }
        .faq-card {
            margin-top: 1rem;
        }
        .badge-category {
            background-color: #e7f0ff;
            color: #004085;
            font-weight: 500;
        }
        .example-usage {
            font-size: 0.85rem;
            color: #4a5568;
        }
        @media (max-width: 768px) {
            .status-table thead {
                display: none;
            }
            .status-table, .status-table tbody, .status-table tr, .status-table td {
                display: block;
                width: 100%;
            }
            .status-table tr {
                margin-bottom: 1rem;
                border: 1px solid #dee2e6;
            }
            .status-table td {
                border: none;
                position: relative;
                padding-left: 50%;
            }
            .status-table td:before {
                content: attr(data-label);
                position: absolute;
                left: 12px;
                width: 45%;
                font-weight: 700;
            }
        }
        .badge-category-1xx { background-color: #cfe2ff; color:#084298; }
        .badge-category-2xx { background-color: #d1e7dd; color:#0f5132; }
        .badge-category-3xx { background-color: #fff3cd; color:#856404; }
        .badge-category-4xx { background-color: #f8d7da; color:#842029; }
        .badge-category-5xx { background-color: #e2d9f3; color:#4a2c6d; }