/* Blockquote Styling - theme adaptive */
.prose blockquote {
    border-left: 4px solid var(--brand-primary);
    background: var(--bg-secondary);
    padding: 18px 22px 18px 50px;
    margin: 20px 0;
    color: var(--text-primary);
    font-style: italic;
    border-radius: 0 8px 8px 0;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-primary);
}

.prose blockquote:before {
    content: '"';
    position: absolute;
    left: 16px;
    top: 8px;
    font-size: 36px;
    color: var(--brand-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: normal;
}

.prose blockquote p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.prose blockquote p:first-child {
    margin-top: 0;
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

/* Table Styling - theme adaptive */
.prose table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-primary);
    background: var(--bg-card);
}

.prose th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid var(--border-primary);
    border-right: 1px solid var(--border-secondary);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.prose th:last-child {
    border-right: none;
}

.prose th:first-child {
    border-top-left-radius: 7px;
}

.prose th:last-child {
    border-top-right-radius: 7px;
}

.prose td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-secondary);
    border-right: 1px solid var(--border-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    vertical-align: top;
    line-height: 1.5;
}

.prose td:last-child {
    border-right: none;
}

.prose tr:nth-child(even) td {
    background: var(--bg-secondary);
}

.prose tr:hover td {
    background: var(--bg-tertiary);
    transition: background-color var(--transition-fast);
}

.prose tbody tr:last-child td {
    border-bottom: none;
} 