﻿/* تنسيق الجداول التي لا تحتوي على الكلاس 'table' */
table:not(.table) {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid;
    border-color: var(--bs-border-color);
    border-radius: 20px;
}

    table:not(.table) th,
    table:not(.table) td {
        padding: 0.75rem;
        border: 1px solid #dee2e6;
        text-align: center;
    }

    table:not(.table) thead tr {
        background-color: rgba(var(--bs-tertiary-bg-rgb), 1)
    }

    /*table:not(.table) tbody + tbody {
        border-top: 2px solid #dee2e6;
    }*/
