

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}



#dataset-table-section {
    flex: 1 0 auto;
    overflow-y: auto;
}

table.dataTable {
    border-collapse: collapse; /* Optional: remove spacing between borders */
    padding-top: 10px;
    width: 100%;

}

table.dataTable thead th {
    background-color: #42445A;
    color: white;
    text-align: center !important; /* Centers the text in each <th> */
    vertical-align: middle; /* Ensures text is vertically centered */
    padding: 10px; /* Adds padding for better readability */
}

table.dataTable tbody td {
    text-align: center; 
    width: 30px;
    vertical-align: middle;
}

table.dataTable tbody td:first-child {
    font-weight: bold; /* Optional: make the text bold for emphasis */
    width: 60px; /* Optional: Adjust column width */
    text-align: left; /* Centers the text in each <th> */

}

/* table.dataTable tbody td:last-child {
    font-weight: bold; 
    color: rgb(8, 8, 195);
} 
*/
table.dataTable tbody td:nth-child(2) {
    font-weight: bold; /* Make the text bold */
    color: rgb(8, 8, 195); /* Change text color */
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between filter items */
    align-items: center;
    margin-bottom: 20px;
}

.filter-item {
    display: flex;
    align-items: center;
    padding: 5px;
    gap: 5px; /* Space between label and input/select */
}


.filter-item select,
.filter-item input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
}

.search-filter {
    flex-grow: 1; /* Makes the search field take up extra space */
}


.search-filter input {
    margin-left: 10px;
    padding: 5px;

    width: 100%; /* Makes the search field fill the available space */
}




/* Styles for the asset link */
.asset-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Styles for the asset image */
.asset-image {
    width: 50px;
    height: auto;
    margin-right: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Hover effect for the asset link */
.asset-link:hover {
    color: #007bff; /* Change text color on hover */
    transform: translateY(-2px); /* Slightly lift the link */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Add a larger shadow */
}
