Hi,
<style>table {
width: 100%;
text-align: left;
border-collapse: collapse;
display: flex;
align-items: left;
justify-content: left;
}
tbody {
display: flex;
flex-direction: row;
}
tr {
display: flex;
flex-direction: column;
height: auto;
}
table td,
table th {
border: 2.5px solid #AAAAAA;
padding: 6px 6px;
height: auto;
}
table tbody td {
font-size: 12px;
}
table thead {
background: #78787b;
width: 25%;
height: auto;
}
table thead th {
font-size: 12px;
font-weight: bold;
color: #FFFFFF;
border-left: 2.5px solid #aaaaaa;
}
table thead th:first-child {
border-left: none;
}
</style>
I hope this helps! Let me know if you have any further questions. If this solves your question, please accept it as a solution & give it a thumbs up to help other community members find it more.
Thanks!