@layer components {
    .rtds-table {
        @apply rtds-w-full rtds-text-sm md:rtds-text-base rtds-border-collapse rtds-table-auto xl:rtds-table-fixed;
    }

    .rtds-table__head,
    .rtds-table thead td, .rtds-table thead th {
        @apply rtds-background-06 rtds-content-inverse;
    }

   .rtds-table th {
        @apply rtds-font-bold rtds-py-3 md:rtds-py-4;
    }

    :where(.rtds-table th, .rtds-table td) {
        @apply rtds-text-left;
    }

    /*.rtds-table tr {
        @apply even:rtds-bg-white odd:rtds-background-02;
    }*/

    .rtds-table tr:not(:first-child) {
        @apply rtds-border-gray-02 rtds-border-t;
    }

    .rtds-table th,
    .rtds-table td {
        @apply rtds-p-3;
    }

    .rtds-table__body {
        @apply rtds-bg-white;
    }

    /* Table container - responsive */
    .rtds-table-responsive {
        @apply rtds-inline-block rtds-overflow-x-auto rtds-w-full rtds-min-w-0;
    }

    .rtds-table .rtds-chip {
        @apply rtds-whitespace-nowrap;
    }

}
