/* Custom styling for Markdown tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
    text-align: left;
}

th {
    background-color: #2a2a2a; /* Dark background matching Ananke's vibe */
    color: #ffffff;
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 2px solid #111111;
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    color: #333333;
}

/* Zebra striping for readability */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect to make rows stand out */
tr:hover {
    background-color: #f1f1f1;
}

/* Responsive wrapper to prevent mobile layout breaking */
.table-wrapper {
    overflow-x: auto;
    display: block;
    width: 100%;
}