/* Project Card Styles */

/* Project Avatar Styles */
.project-avatars { 
  gap: 8px; 
}

.project-avatar, .project-avatar-more {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  line-height: 1;
}

.project-avatar img, .project-avatar i {
  border-radius: 50%;
  line-height: 1;
}

.project-avatar i {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
  text-align: center;
  font-style: normal;
}

.project-avatar-more {
  font-size: 0.85rem;
}

/* Add Button for Project */
.project-add-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e9ecef; /* light grey */
  color: #495057;
  border: 1px solid #dcdcdc;
  padding: 0;
  line-height: 1;
  font-size: 14px;
  text-align: center;
}

.project-add-btn i {
  line-height: 1;
  font-style: normal;
}

/* Project Card Dropdown - Prevent overflow clipping */
.project-card .dropdown-menu {
  position: absolute !important;
  z-index: 1070 !important;
}