.prose {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    width: 100%;
}
.prose > * {
    /*margin-bottom: 1rem;*/ /* Deleted space of table on the Page PromoArticle */
}

.prose:has(>table),
.prose div:has(>table) {
    overflow-x: auto;
    overflow-y: clip;
}

.prose table {
    width: 100%;
}

.prose tr > * {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.prose tr:first-of-type > th,
.prose table:not(:has(thead)) tbody tr:first-of-type > td,
.prose table thead tr:first-of-type > td,
.prose table thead tr:first-of-type > th {
    background-color: rgb(176 0 0);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}
.prose tr:first-of-type > th p,
.prose tr:first-of-type > th b,
.prose table:not(:has(thead)) tbody tr:first-of-type > td p,
.prose table:not(:has(thead)) tbody tr:first-of-type > td b,
.prose table thead tr:first-of-type > td p,
.prose table thead tr:first-of-type > td b,
.prose table thead tr:first-of-type > th p,
.prose table thead tr:first-of-type > th b {
    font-size: 14px;
    font-weight: 600;
}

.prose table:not(:has(thead)) tr:nth-of-type(even) > *,
.prose table:has(thead) tr:nth-of-type(odd) > * {
    background-color: #f4eef3;
}

.prose tr:nth-of-type(odd) > *,
.prose table:has(thead) tr:nth-of-type(even) > * {
    background-color: #ffffff;
}

.prose tbody tr:first-of-type > :first-child,
.prose thead tr:first-of-type > :first-child{
    border-top-left-radius: 0.5rem;
}

.prose tbody tr:first-of-type > :last-child,
.prose thead tr:first-of-type > :last-child {
    border-top-right-radius: 0.5rem;
}

.prose tbody tr:last-of-type > :first-child {
    border-bottom-left-radius: 0.5rem;
}

.prose tbody tr:last-of-type > :last-child {
    border-bottom-right-radius: 0.5rem;
}

.prose th,
.prose td {
    text-align: left;
    padding: 0.75rem 1rem;
    vertical-align: top;
}

.prose tbody tr u,
.prose  tbody tr b {
    text-decoration: none !important;
    font-weight: 400;
}

.prose ul {
    @apply list-disc ml-4;
}
