@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;700&display=swap');

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f5f5f5;
}

#find-my-employee-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

#find-my-employee-root {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#filter-sidebar {
    width: 250px;
}

@media (max-width: 768px) {
    #find-my-employee-wrapper {
        flex-direction: column;
    }
}