.userStoryBG {
  width: 128px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #ff7a00;
  color: white;
}

.technicalTaskBG {
  width: 132px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #0038ff;
  color: white;
}

.technicalTaskBG span {
  font-size: 16px;
  margin-left: unset !important;
}

.taskSingleCard {
  width: 272px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.taskSingleCardContentWrapper {
  width: 240px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 16px;
  gap: 16px;
  cursor: pointer;
}

.taskTypeContainer {
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: space-between;
}

.task-btns {
  display: none;
  gap: 8px;
}

.edit-task-btn,
.delete-task-btn {
  padding: 5px 10px;
  cursor: help;
  border-radius: 4px;
  font-size: 16px;
}

.edit-task-btn {
  color: white;
  border: solid 2px #4589ff;
  margin: 0;
  padding: 4px;
  width: 16px;
  height: 16px;
}

.edit-task-btn:hover {
  filter: drop-shadow(0px 0px 8px #0038ff);
}

.delete-task-btn {
  color: white;
  border: solid 2px #4589ff;
  margin: 0;
  padding: 4px;
  width: 16px;
  height: 16px;
}

.delete-task-btn:hover {
  filter: drop-shadow(0px 0px 8px #0038ff);
}

.taskTitleAndDescriptionContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 8px;
}

.taskTitleContainer {
  width: 100%;
  height: auto;
  font-weight: bold;
  color: #4589ff;
}

.taskTitleContainer span {
  margin: unset !important;
}

.taskDescriptionContainer {
  width: 100%;
  height: 50px !important;
  overflow: hidden;
  height: auto;
  color: #a8a8a8;
}

.taskDescriptionContainer span {
  margin: unset !important;
  font-size: 16px;
}

.taskProgressbarContainer {
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.taskProgressbarSVGContainer {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 140px;
}

#taskProgressbarStatusText {
  font-size: 15px !important;
  margin: unset;
}

.taskAssignedToAndPriorityContainer {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.taskAssignedToContainer {
  display: flex;
  justify-content: start;
  align-items: center;
  overflow-x: auto;
  padding-left: 8px;
}

.taskSingleContact {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  border: 2px solid white;
  background-color: #2a3647;
  color: white;
  margin-left: -8px;
  flex-shrink: 0;
}

.taskSingleContact span {
  margin-left: unset !important;
  font-size: 14px;
}

.taskPriorityContainer {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0px 10px;
}

.taskPrioritySVGContainer {
  display: flex;
  justify-self: center;
  align-items: center;
}
