/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Tab Active State */
.tab-btn.active {
    background-color: white;
    color: #2563eb; /* brand-600 */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

/* Table Styling */
#tableHead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
#tableBody td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #334155;
    white-space: nowrap;
    border-bottom: 1px solid #f1f5f9;
}
#tableBody tr:hover {
    background-color: #f8fafc;
}

/* Markdown Styles override */
.prose h3 {
    color: #1e40af;
    margin-top: 1.5em;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
}
.prose li {
    margin-top: 0.25em;
}

/* Loader */
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3b82f6;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
