#readme * {
    border: none;
}

#readme table {
    width: 100%;

    border-spacing: 0;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #2c2f33;
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    table-layout: fixed;
}

#readme table thead {
    background-color: #23272a;
    color: #ffffff;
}

#readme table thead th {
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #41474d;
}

#readme table tbody {
    display: table-row-group;
    /* Ensures tbody behaves like a group of rows */
}

#readme table tbody tr {
    display: table-row;
    /* Ensures missing cells don’t break row styling */
}

#readme table tbody tr+tr {
    border-top: 1px solid #41474d !important;
    /* Stripe between rows */
}

#readme table tbody td {
    display: table-cell;
    /* Ensures missing cells don’t affect the layout */
    padding: 12px;
    color: #d1d5db;
}