    .v-table {
        width: 100%;
        border-collapse: collapse;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        background: #fff;
        border-radius: 4px;
        overflow: hidden;
        /* box-shadow: 0 1px 3px rgba(0,0,0,0.1); */
    }

    .v-table th, .v-table td {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .v-table th { 
        background-color: #f5f5f5;
        font-weight: 500;
        color: #555;
        height: 48px;
    }

    .v-table tr th:last-child {
        text-align: center;
    }

    .v-table td.actions {
        text-align: center;
        white-space: nowrap;
    }

    .v-icon-button {
        border: none;
        background: none;
        cursor: pointer;
        padding: 4px;
        margin: 0 2px;
        font-size: 16px;
        color: #666;
    }

    .v-icon-button:hover {
        color: #000;
    }

    .v-icon-button.delete {
        color: #d32f2f;
    }

    .v-icon-button.edit {
        color: #1976d2;
    }

    .v-toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .3em 1em; /* margin: 1em 0; */
        background-color: #6200ea;
    }

    .v-toolbar h2 {
        margin: 0;
        font-size: 1.4em;
        color: #ffffff;
    }

    .v-toolbar .btn-new {
        background-color: transparent; /* #673ab7; */
        color: white;
        padding: 8px 12px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
    }

    .v-toolbar .btn-new svg {
        fill: #ffffff;
        min-width: 26px;
    }

    .v-toolbar .btn-new:hover {
        background-color: #5e35b1;
    }

    .v-table tbody tr:hover td,
    .data-table tbody tr:hover td {
        background: #f2f4f6;
    }

    td.actions a, td.actions button,
    td.option a, .action-option {
        /*
        cursor: pointer;
        min-width: 28px;
        min-height: 28px;
        background: #fff;
        color: #a1a3a5;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        text-align: center;
        margin: 0 5px;
        padding: 2px 0 2.5px 0;
        border: 1px solid #e2e7f1;
        font-size: 14px;
        */
    }

    .v-icon-button {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }
    .v-icon-button svg { 
        width: 16px;
        height: 16px;
        fill: rgba(0,0,0,.54); /* #0000008a */
    }
    .v-icon-button:hover svg { 
        fill: #3b3b3b; /* #808080; */
    }

    .datatable-pagination {
        margin: 1em 0; text-align: center;
    }
    .datatable-pagination button {
        margin: 0 0.25em; padding: 0.5em 1em;
    }
    .datatable-pagination button.active {
        background: #007bff; color: white;
    }
    .datatable-search {
        margin-bottom: 0.5em;
        padding: 0.5em;
        width: 100%;
        box-sizing: border-box;
    }
    .drag-handle { cursor: move; }


    .filter-section {

    }

/**
 *
 **/
.search-container {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
}

.act-right {
    display: flex;
    gap: 10px;
}

.filter-box input {
    padding: 5px;
    font-size: 14px;
}

.filter-section-flex-row {
    display: flex;
}
.filter-section-left {
    flex: 1;
}
.filter-section-right {
    flex: 0 0 auto;
    text-align: right;
}
.filter-item-box {
    display: inline-block;
    margin: 5px;
}    
.filter-box input,
.data-Tables_filter input {
    border-radius: 2px;
    border: 1px solid #e2e7f1;
    box-shadow: none;
    padding: 7px 10px;
    outline: none;
    font-weight: normal;
    background: url("search.png") no-repeat 96% 45% #fff;
    width: 200px !important;
    transition: all 0.5s;
    height: 32px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 1rem 0;
    font-family: sans-serif;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .active,
.pagination .current {
    background-color: #808080; /* #007bff; */
    border-color: #808080; /* #007bff; */
    color: #fff;
    font-weight: bold;
    cursor: default;
}

.pagination .disabled {
    background-color: #eee;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination .ellipsis {
    padding: 6px 12px;
    color: #666;
    user-select: none;
    cursor: default;
}