body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
    text-align: center;
}

#employee-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.employee {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 370px;
    text-align: left;
    position: relative;
}

.employee img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.employee strong {
    color: #007bff;
}

.employee div {
    margin-bottom: 10px;
}

.arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
}

.arrow:hover {
    opacity: 0.8;
}

.search-container {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
  }
  
  #search-bar {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    
  }
  
  #backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 100;
}

#backToTopBtn:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    #employee-list {
        flex-direction: column;
        align-items: center;
    }

    .employee {
        width: 90%;
    }
}
