body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    color: var(--color-gray-900);
    line-height: 1.5;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-3xl);
}

h2 {
    font-size: var(--font-size-2xl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
}

h5 {
    font-size: var(--font-size-md);
}

a {
    color: var(--color-secondary-main);
    text-decoration: none;
    transition: var(--transition-standard);
}

a:hover {
    color: var(--color-blue-400);
}

/* Premium Tables */
.md-typeset table:not([class]) {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

.md-typeset table:not([class]) thead {
    background: var(--color-purple-500);
    color: #FFFFFF;
}

.md-typeset table:not([class]) thead th {
    font-weight: 600;
    font-size: 0.8rem;
    padding: var(--spacing-md);
    border: none;
}

.md-typeset table:not([class]) tbody td {
    padding: var(--spacing-md);
    border-top: 1px solid var(--color-gray-100);
}

.md-typeset table:not([class]) tbody tr:hover {
    background-color: rgba(121, 57, 125, 0.04);
}