

/* User cards */
.user-card {
  background: white;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  height: 100%; /* all cards same height */
}

/* hover cards */
.user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* User icon badge */
.user-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0); 
}

/* User name */
.user-name {
  font-family: "Poppins", sans-serif;;
  font-size: 1.3rem;
  font-weight: 20;
}

.new-user-card {
  text-align: left;
}

.plus-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
