 .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            /* color: #2c3e50; */
        }
        
        .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .search-container {
            display: flex;
            flex: 1;
            min-width: 300px;
        }
        
        #searchInput {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        #searchInput:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        .filter-type {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .filter-option {
            padding: 8px 15px;
            background: #e9ecef;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-option.active {
            background: #3498db;
            color: white;
        }
        
        .results-info {
            color: #7f8c8d;
            font-size: 14px;
            text-align: center;
            margin: 10px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        
        thead {
            background-color: #3498db;
            color: white;
        }
        
        th {
            padding: 1px;
            text-align: left;
            font-weight: 600;
            cursor: pointer;
            user-select: none;
            position: relative;
        }
        
        th:hover {
            background-color: #2980b9;
        }
        
        th::after {
            content: '↕';
            position: absolute;
            right: 10px;
            opacity: 0.7;
        }
        
        th.asc::after {
            content: '↑';
        }
        
        th.desc::after {
            content: '↓';
        }
        
        tbody tr {
            border-bottom: 1px solid #e1e1e1;
            transition: background-color 0.2s;
        }
        
        tbody tr:hover {
            background-color: #f8f9fa;
        }
        
        td {
            padding: 7px 7px;
        }
        
        .department {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .engineering { background-color: #e8f4fd; color: #3498db; }
        .sales { background-color: #e8f8f5; color: #27ae60; }
        .marketing { background-color: #fef9e7; color: #f39c12; }
        .hr { background-color: #fdedec; color: #e74c3c; }
        .finance { background-color: #f4ecf7; color: #8e44ad; }
        
        .no-results {
            text-align: center;
            padding: 30px;
            color: #7f8c8d;
            font-style: italic;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 5px;
        }
        
        .pagination button {
            padding: 8px 15px;
            border: 1px solid #ddd;
            background-color: white;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .pagination button:hover {
            background-color: #f1f1f1;
        }
        
        .pagination button.active {
            background-color: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .pagination button:disabled {
            background-color: #f8f9fa;
            color: #6c757d;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-container {
                min-width: 100%;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
        }

        /* ADDED LATER */

        .pagination-ellipsis {
    padding: 8px 12px;
    margin: 0 4px;
}

#pagination button {
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

#pagination button.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

#pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

