body {
    background-color: #0d0c1b;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  
  h1 {
    margin-bottom: 1rem;
  }
  
  input, select, button {
    padding: 0.5rem;
    margin: 0.3rem;
    border-radius: 6px;
    border: 1px solid #ff69b4;
    background-color: #141323;
    color: white;
    font-size: 1rem;
  }
  
  input::placeholder {
    color: #ccc;
  }
  
  button {
    background-color: #ff69b4;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #ff85c1;
  }
  
  .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .user-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #141323;
    border: 2px solid #ff69b4;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.7rem;
    width: 100%;
    max-width: 600px;
  }
  
  .user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ff69b4;
  }
  
  .user-details {
    display: flex;
    flex-direction: column;
  }
  
  .user-name {
    font-weight: bold;
  }
  
  .user-type {
    font-size: 0.75rem;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    background-color: #ff69b4;
    display: inline-block;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  
  .user-date {
    font-size: 0.8rem;
    color: #bbb;
  }
  
  .remove-btn {
    background-color: white;
    color: black;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
  }
  
  .remove-btn:hover {
    background-color: #ccc;
  }
  
  .filter-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  