table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    /* table-layout: fixed; */
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0px 0px 20px rgb(26 26 26 / 34%);
    border-radius: 15px;
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table thead {
    border-bottom: 1px dashed hsl(var(--white) / 0.3);
}

/* table thead tr{
   background: linear-gradient(to top, #fffef9, #fce9be, #f8c454);
    border-top-left-radius: 8px;
} */
table tr {
    padding: .35em;
}

table tr:nth-child(even) {
       background: rgba(255, 255, 255, 0.089);
}

/* table tbody tr:hover {
    background: #d9e3e8;
} */

table th,
table td {
    padding: 10px;
    text-align: center;
    /* border: 0.5px dashed #f8d13696 !important; */
    font-size: 15px;
    font-weight: 400;
     vertical-align: top;
     color: #fff;
     /* border-bottom: 1px solid #00adef; */
}

table th {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    color: #f8c454;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead th {
        display: none;
    }

    table tr {
        display: block;
    }

    table td {
        /* border-bottom: 1px solid #ddd; */
        display: block;
        text-align: left;
    }

    table td::before {
        content: attr(data-label);
        /* display: block; */
        display: inline;
        font-weight: light;
        text-transform: capitalize;
        font-size: 17px;
        margin-bottom: 0.6em;
        color: #00adef;
        font-weight: 700;
        /* padding-right: 15px; */
    }

}