@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    background: #fefefe;
    font-family: "Poppins", sans-serif;
    /* box-shadow: 0px 0px 20px rgb(26 26 26 / 34%); */
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
    color: #f6f6f6;
}

table thead {
    background: #42bd41;
    border-bottom: none;
    color: #ffffff;
}

table tr {
    padding: .35em;
}

table tr td {
    color: #000;
}

table tr td b {
    font-weight: 600;
}

table tr:nth-child(even) {
    background: #f0f0f0;
}

table tbody tr:hover {
    background: #d9e3e8;
}

table th,
table td {
    padding: 5px;
    text-align: center;
    border-bottom: 2px dashed #42bd41 !important;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #cccccc;
}

table th {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 700;
}

.subheading1 {
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 600;
}

@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: 15px;
        margin-bottom: 0.6em;
        color: #42bd41;
        font-weight: 600;
    }

    table tr td b {
        font-weight: 500 !important;
    }
}