.table {
    width: 100%;
    background: #fff;
border-collapse: collapse;
    display: table;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: transparent;

}

.thead {
    display: table-header-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
background-color: #ff1493
}

.table thead th {
    border: none;
    padding: 20px 30px;
color: white;
}

.tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;

    margin-bottom: 10px;

}

.tr th {
border: none; 
    padding: 20px 30px; 
    border-bottom: 3px solid #f8f9fd;
color: black;
}

.tr td {
border: none; 
    padding: 20px 30px; 
    border-bottom: 3px solid #f8f9fd;
text-align: center;
color: black;
}