/* Markdown Table Styles */
.markdown-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.markdown-table thead {
    background-color: #f8f9fa;
}

.markdown-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    color: #212529;
}

.markdown-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.markdown-table tbody tr:hover {
    background-color: #f8f9fa;
}

.markdown-table tbody tr:last-child td {
    border-bottom: none;
}

.markdown-table th:first-child,
.markdown-table td:first-child {
    padding-left: 20px;
}

.markdown-table th:last-child,
.markdown-table td:last-child {
    padding-right: 20px;
}

/* Responsive table */
@media (max-width: 768px) {
    .markdown-table {
        font-size: 0.85em;
    }
    
    .markdown-table th,
    .markdown-table td {
        padding: 8px 10px;
    }
}

