.dataTables_length {
  padding: 16px 20px;
  display: none;
}

.dataTables_filter {
  padding: 16px 20px;
  display: none;
}

.dataTables_info {
  padding: 16px 20px;
}

.pagination {
  padding: 16px 20px;

}

.pagination .page-item .page-link {
    border: 1px solid #ddd;
    color: #64748b;
    border-radius: 5px;
    margin: 0 2px;
    transition: background-color 0.2s, color 0.2s;

}

.pagination .page-item.active .page-link {
    background-color: #624bff;
    color: white;
    border-color: #624bff;
}

.pagination .page-item.disabled .page-link {
    color: #64748b;
    background-color: #cbd5e1;
    cursor: not-allowed;
    border-color: #ddd;
}

.pagination .page-item .page-link:hover {
    color: #64748b;
    background-color: #cbd5e1;

}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #624bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bg-danger-soft {
    background-color: #fbeaec;
}

.bg-success-soft {
    background-color: #e8f3ee;
}

.bg-info-soft {
    background-color: #e6fafd;
}

.bg-primary-soft {
    background-color: #efedff;
}

.bg-dark-soft {
    background-color: #e8e9eb;
}

.icon-xxs {
    margin-bottom: 2px;
    height: 0.8rem;
    line-height: 1rem;
    width: 1rem;
}