
.profile-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

/* Dropdown menu styles */
.dropdown-menu {
    min-width: 180px;
    border-radius: 8px;
    padding: 10px;
}

.dropdown-item {
    padding: 10px;
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Search Bar Styles */
.custom-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--custom-bg-dark);
    padding: 12px;
    border-radius: 8px;
    max-width: 400px;
    margin: 15px auto;
    transition: all 0.3s ease-in-out;
  }
  .custom-search-bar:hover {
    box-shadow: 0px 0px 15px var(--custom-accent-blue);
  }
  .custom-search-bar input {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    background: #333;
    color: white;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
  }
  .custom-search-bar input:focus {
    box-shadow: inset 0px 0px 5px var(--custom-accent-blue);
  }
  .custom-search-bar button {
    background-color: #333;
    border: none;
    padding: 12px 15px;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
  }
  .custom-search-bar button:hover {
    background: #0056b3;
    box-shadow: 0px 0px 10px var(--custom-accent-blue);
  }
  

  /* Member Tile Styles */
  .member-tile {
    background-color: #1f1f1f;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
  }
  .member-tile:hover {
    background-color: #2a2a2a;
  }
  .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }