.prose-teal a {
    color: #0d9488 !important; /* teal-600 */
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}
.prose-teal a:hover {
    color: #0f766e !important; /* teal-700 */
}

/* Improve rich text output styling in blog details */
.prose p {
    margin-top: 1em;
    margin-bottom: 1em;
    line-height: 1.7;
}
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #111827;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.75em;
    line-height: 1.3;
}
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.25rem; }
.prose strong, .prose b {
    font-weight: 700;
    color: #111827;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}
.prose ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}
.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Beautiful Table Styling for Blogs */
.prose table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}
.prose table thead {
    background-color: #0f766e; /* teal-700 */
}
.prose table th {
    font-weight: 700;
    text-align: left;
    padding: 14px 20px;
    color: #ffffff;
    border-bottom: none;
}
.prose table tbody tr:nth-child(even) {
    background-color: #f0fdfa; /* teal-50 */
}
.prose table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.prose table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    vertical-align: middle;
    border-right: 1px solid #e5e7eb;
}
.prose table td:last-child {
    border-right: none;
}
.prose table tbody tr:last-child td {
    border-bottom: none;
}
/* Make first column bold */
.prose table tbody td:first-child {
    font-weight: 700;
    color: #374151;
}
