/* styles.css */

.table-wrapper {
    overflow-x: auto;
    margin: 20px;
		width: 100%;
		max-width: 1500px;
		display: block;
		margin: auto;
}

.sino-truk {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.sino-truk th, .sino-truk td {
    padding: 4px 10px !important;
    border: 1px solid #ddd;
		vertical-align: middle;
}

.sino-truk th {
	font-weight: 500;
}

.sino-truk thead th {
    background-color: #f4f4f4;
		font-weight: 500;
}

/* [Start] MEDIA QUERIES */
@media (max-width: 768px) {
    .sino-truk thead, tbody, th, td, tr {
        display: block;
    }

    .sino-truk thead {
        display: block;
    }

    .flex-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .mixer .sino-truk th {
        flex: 2;
        text-align: left;
        padding: 8px;
        box-sizing: border-box;
				background-color: #3333331c;
    }

    .sino-truk th[colspan="4"] {
        flex: 4;
    }
	
	    .sino-truk th[colspan="5"] {
        flex: 5;
    }

    .sino-truk tbody tr {
        margin: 0 0 1rem 0;
        border-bottom: 2px solid #ddd;
    }

    .sino-truk tbody tr td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 10px;
        text-align: left;
        white-space: pre-wrap;
    }

    .sino-truk tbody tr td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 15px;
        font-weight: bold;
        white-space: nowrap;
        text-align: left;
        display: none;
    }

    .sino-truk tbody tr td[data-label="Type"] {
        padding-left: 15px;
    }

    .sino-truk tbody tr td[data-label="Type"]::before {
        content: "";
    }
}

/* [End] MEDIA QUERIES */
