.employeelist {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 20px;
  }
  .container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  h2 {
    margin-bottom: 20px;
  }
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .top-bar input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .top-bar button {
    background-color: #00358a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  thead {
    background-color: #f0f0f0;
  }
  th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  .status {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
  .active { background-color: #dcfce7; color: #22c55e; }
  .onleave { background-color: #dbeafe; color: #3b82f6; }
  .resigned { background-color: #fee2e2; color: #ef4444; }

  .avatar {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
  }
  .actions button {
    background-color: #f3f4f6;
    border: none;
    padding: 6px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
  }
  .actions button.delete {
    background-color: #fee2e2;
  }
  .pagination {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
  }
  .pagination button {
    border: 1px solid #ccc;
    background: white;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 4px;
    cursor: pointer;
  }
  .pagination .active-page {
    background-color: #3b82f6;
    color: white;
    border: none;
  }