@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Be Vietnam Pro', sans-serif;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568; /* text-gray-700 */
}

#toc ul {
    list-style-type: none;
    padding-left: 0;
}

#toc ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #4a5568; /* text-gray-700 */
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

#toc ul li a:hover {
    color: #d97706; /* amber-600 */
    padding-left: 8px;
}

#toc ul li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #d97706; /* amber-600 */
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.prose blockquote {
    border-left-color: #f59e0b; /* amber-500 */
    color: #374151; /* text-gray-700 */
    font-style: italic;
    background-color: #f9fafb; /* gray-50 */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0.5rem;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
}

.prose th {
    background-color: #f3f4f6; /* gray-200 */
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #e5e7eb; /* gray-300 */
}

.prose td {
    padding: 12px 15px;
    border: 1px solid #e5e7eb; /* gray-300 */
}

.prose tr:nth-child(even) {
    background-color: #f9fafb; /* gray-50 */
}
