//STYLE POUR PAGINATION

.search-container {
    position: relative;
}

.search-loading {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.table-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.datatable-container {
    position: relative;
}

.status-badge {
    font-size: 0.75rem;
}

.controls-section {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.filters-section {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.collapse-toggle {
    cursor: pointer;
    user-select: none;
}

.collapse-toggle:hover {
    background-color: #e9ecef;
}

.highlighted {
    background-color: yellow !important;
}

.no-results {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 2rem;
}