/* Container */
#table-container {
    margin: 20px;
    font-family: 'Heebo', sans-serif;
}

/* Search Input */
#searchInput {
display:block;    
margin-bottom: 10px;
    padding: 8px 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Labels */
#table-container label {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}


/* Filters */
#rowsPerPage, #processFilter, #typeFilter {
    margin-right: 10px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

table, th, td {
    border: 1px solid #ddd;
}

th {
    background-color: #f4f4f4;
    color: #333333;
    padding: 12px;
    text-align: left;
    font-size: 16px;
}

td {
    padding: 12px;
    font-size: 14px;
}

/* Responsive Table */
@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 15px;
    }

    th, td {
        text-align: left;
        padding-left: 10px;
        position: relative;
    }

    th::before, td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    th {
        background-color: transparent;
        color: #333;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
    }

    td {
        border: none;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    td:last-child {
        border-bottom: 0;
    }
}

/* Pagination */
#pagination {
    margin-top: 20px;
    text-align: center;
}

#pagination button {
    padding: 8px 16px;
    margin: 0 5px;
    background-color: #5ec5f0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

#pagination span {
    margin: 0 10px;
    font-size: 14px;
    color: #333333;
}
#pagination button:focus, button:active {
    outline: none;
    border: none;
}


/* Links in Table */
.elementor-widget-html #dataTable a {
    color: #333333 !important;
    text-decoration: none !important;
    font-weight: bold;
}

.elementor-widget-html #dataTable a:hover {
    color: #007c8c !important;
    text-decoration: underline !important;
}
