.datatable-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.datatable-top,
.datatable-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.datatable-top {
    border-bottom: 1px solid #eef2f7;
}

.datatable-bottom {
    border-top: 1px solid #eef2f7;
}

.datatable-container {
    overflow-x: auto;
}

.datatable-table {
    margin-bottom: 0;
}

.datatable-table thead th {
    background: #f8fafc;
    color: #334155;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid #e5e7eb;
    padding: .9rem 1rem;
}

.datatable-table tbody td {
    padding: .9rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.datatable-table tbody tr:hover {
    background: #f8fafc;
}

.datatable-table a {
    color: #337ab7;
    text-decoration: none;
    font-weight: 500;
}

.datatable-table a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.datatable-input,
.datatable-selector {
    border: 1px solid #cbd5e1;
    border-radius: .75rem;
    padding: .55rem .75rem;
    background-color: #fff;
}

.datatable-input {
    min-width: 220px;
}

.datatable-pagination-list {
    display: flex;
    gap: .25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.datatable-pagination-list-item-link {
    border: 0;
    border-radius: .65rem;
    padding: .45rem .7rem;
    background: transparent;
    color: #334155;
}

.datatable-pagination-list-item-link:hover {
    background: #f1f5f9;
}

.datatable-active .datatable-pagination-list-item-link {
    background: #e2e8f0;
    font-weight: 600;
}

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

.datatable-wrapper .datatable-top > .datatable-search {
    margin-left: auto !important;
}
