 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            padding: 20px;
        }


        .main-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 20px;
        }


        .sidebar {
            width: 280px;
            background: white;
            border: 1px solid #ddd;
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }


        .sidebar h2 {
            color: #333;
            margin-bottom: 20px;
            font-size: 1.2em;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }


        .filter-group {
            margin-bottom: 20px;
        }


        .filter-group h3 {
            color: #666;
            font-size: 0.9em;
            margin-bottom: 10px;
            text-transform: uppercase;
        }


        .filter-button {
            display: block;
            width: 100%;
            padding: 10px;
            margin-bottom: 5px;
            background: #333;
            color: white;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 0.9em;
        }


        .filter-button:hover {
            background: #555;
        }


        .reset-button {
            background: #d32f2f;
        }


        .reset-button:hover {
            background: #b71c1c;
        }


        select.filter-select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            background: white;
            font-size: 0.9em;
            margin-bottom: 5px;
        }


        .container {
            flex: 1;
            background: white;
            border: 1px solid #ddd;
            padding: 30px;
        }


        h1 {
            color: #333;
            text-align: center;
            margin-bottom: 10px;
            font-size: 2em;
        }


        h2{
            text-align: center;
             margin-bottom: 20px;
        }
        .filter-info {
            background: #e3f2fd;
            border-left: 4px solid #2196f3;
            padding: 15px;
            margin-bottom: 20px;
            color: #333;
        }


        .filter-info strong {
            color: #1976d2;
        }


        .search-container {
            margin-bottom: 20px;
            text-align: center;
        }


        .search-bar {
            width: 100%;
            max-width: 500px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
        }


        .employees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }


        .employee-card {
            background: #f9f9f9;
            border: 1px solid #ddd;
            padding: 15px;
        }


        .employee-card h3 {
            margin-bottom: 10px;
            color: #333;
        }


        .employee-card p {
            margin: 5px 0;
            color: #666;
            font-size: 0.9em;
        }


        .employee-card .badge {
            display: inline-block;
            background: #333;
            color: white;
            padding: 5px 10px;
            margin-top: 10px;
            font-size: 0.85em;
        }


        .employee-card.minimal {
            background: #e8f5e9;
        }


        .no-results {
            text-align: center;
            padding: 40px;
            color: #666;
        }


     
        .result-box {
            grid-column: 1/-1;
            background: #333;
            color: white;
            padding: 30px;
            text-align: center;
            margin-bottom: 20px;
        }


        .result-box h2 {
            font-size: 2em;
            margin-bottom: 15px;
        }


        .result-box p {
            font-size: 1.3em;
        }


        .welcome-box {
            grid-column: 1/-1;
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }


        .welcome-box h2 {
            font-size: 2em;
            margin-bottom: 15px;
            color: #333;
        }


        .welcome-box p {
            font-size: 1.1em;
        }


        @media (max-width: 968px) {
            .main-wrapper {
                flex-direction: column;
            }


            .sidebar {
                width: 100%;
                position: relative;
            }
        }
