* {
    box-sizing: border-box;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table td,
.table th {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.table th {
    background-color: #fff;
    color: #000;
}

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

@media (max-width: 1024px) {
    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }

    .table tr {
        margin-bottom: 15px;
    }

    .table tr:first-child {
        background-color: #9E9E9E !important;
        color: #5a5a5a;
    }

    .table td {
        padding: 15px 15px 15px 50% !important;
        text-align: left;
        position: relative;
        background-color: #f9f9f9;
    }

    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        font-size: 15px;
        font-weight: bold;
        width: 30%;
        word-break: break-word;
        padding: 5px 15px;
        top: 50%;
        padding: 5px 15px;
        transform: translateY(-50%);

    }

    table.dataTable.no-footer {
        border: unset;
    }

    .table-bordered {
        border: unset;
    }

    .table-responsive {
        padding: 0 !important;
    }
}

@media (max-width: 425px) {
    .table td::before {
        padding: 5px;
        font-size: 11px;
        line-height: 1.2;
    }

    .table td {
        font-size: 12px;
    }
}
