.table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table {
    /* margin: 20px auto; */
    width: 100%;
    border-spacing: 0;
    /* text-align: center; */
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* padding: 20px; */
    background-color: #12192c;

}

.table th {
    font-weight: 300;
    font-size: 14px;
    color: #FDC830;
    /* line-height: 26px; */
    /* padding: 18px 30px; */
    vertical-align: middle;
    background: #068e14;
}

.table thead tr {
    background: #068e14;

}

.table td {
    /* padding: 30px 10px; */
    font-weight: 300;
    font-size: 14px;
    color: black-2;
    /* line-height: 26px; */
    /* text-transform: uppercase; */
    color: #000;
    vertical-align: middle;
    /* text-align: left; */
}

.table tbody tr:nth-child(odd) {
    background: #9dcda7;
}

.table tbody tr:nth-child(even) {
    background: #c8d2ce;
}

.table__wrapper {
    padding-top: 40px;
}

.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    width: 170px;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    color: white;
}

.btn__active {
    color: #4ed99c;
    border: 2px solid #4ed99c;
}

.btn__active:hover {
    background: #4ed99c;
}

.btn__pledged {
    color: #f14044;
    border: 2px solid #f14044;
}

.btn__pledged:hover {
    background: #f14044;
}

@media (max-width: 768px) {
    .table {
        width: 100%;
        padding-top: 5px;
    }

    .table th {
        display: none;
        font-size: 12px;
    }

    #table-selamatdatang th {
        font-size: 12px;
        display: block;
    }

    .table td {
        display: block;
        text-align: right;
        /* right: 0;
        padding-left: 30px; */
        font-size: 12px;
    }

    .table td:before {
        content: attr(data-label);
        float: left;
        /* text-transform: uppercase; */
        /* font-weight: bold; */
    }

    .table thead display none tr {
        margin-bottom: 30px;
        display: block;
    }
}

tr:hover:not(th) {
    background-color: rgba(237, 28, 64, .1);
}