.boardOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.747); /* overlay background */
  z-index: 1000; /* over all elements */
}

.headerTitle {
  cursor: pointer;
}

.headerProfileLetter {
  cursor: pointer;
}

.dropDownBar {
  top: 100px;
  display: none;
  position: absolute;
  flex-direction: column;
}

.dropDownItem {
  color: #42526e;
  text-decoration: none;
  display: block;
  text-align: end;
}

.activ {
  padding: 10px;
  width: 125px;
  height: 90px;
  display: block;
  gap: 8px;
  font-size: 19px;
  font-weight: 400;
  border-radius: 20px 0px 20px 20px;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.3);
}

.boardContent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 80px;
  margin-right: 80px;
}

.searchAndAddContainer {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.searchBarContainer {
  width: auto;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchInput {
  width: 320px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid #A8A8A8;
  font-size: 20px;
  cursor: pointer;
  padding-right: 64px;
  padding-left: 24px;
}

.searchInput:hover {
  border: 1px solid #4589FF;
}

.searchInput:focus {
  border: 1px solid #005DFF;
  outline: none;
}
/* Lupe Icon */
.boardSearchIconContainer {
  width: 64px;
  height: 40px;
  border-left: 1px solid #D1D1D1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-left: 320px;
}

.boardSearchIconSVGWrapper {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.boardSearchIcon {
  width: 32px;
  height: 32px;
}

.boardSearchIconSVGWrapper:hover{
  background-color: #E3EEFF;
  cursor: pointer;
}

.boardSearchIconSVGWrapper:hover .boardSearchIconRect{
  fill: #4589FF;
}

.boardSearchIconSVGWrapper:active .boardSearchIconRect{
  fill: #005DFF;
}

/* Add Task Button Styling */
.boardAddTaskButtonContainer {
  width: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4589ff;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 20px;
  cursor: pointer;
  height: 50px;
  gap: 8px;
}

.boardAddTaskButtonContainer:hover {
  background-color: #005DFF;
}

.boardAddTaskButtonContainer:active {
  background-color: #091931;
}

/* Board Container */
.boardContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 8px;
}

/* Tab Item */
.tabItem {
  width: 360px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tabItemText {
  font-size: 24px;
  font-weight: bold;
  margin-left: 24px;
  color: #42526E;
}

.tabItemSVGContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 24px;
}

.tabItemSVGContainer:hover .tabItemSVG{
  stroke: #005DFF;
}

.tabItemSVGContainer:active .tabItemSVG{
  stroke: #A8A8A8;
}

/* Tasks Container */
.tasksContainer {
  width: 360px;
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding-top: 8px;
}

.tasks {
  width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* To Do Tasks */
.toDoContainer {
  width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.noToDoContainer {
  width: 350px;
  min-height: 64px;
  background-color: #E7E7E7;
  border-radius: 12px;
  border: 1px dashed #A8A8A8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.noToDoText {
  font-size: 22px;
  color: #A8A8A8;
}

/* In Progress Tasks */
.inProgressContainer {
  width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.noInProgressContainer {
  width: 350px;
  min-height: 64px;
  background-color: #E7E7E7;
  border-radius: 12px;
  border: 1px dashed #A8A8A8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.noInProgressText {
  font-size: 22px;
  color: #A8A8A8;
}

/* Await feedback Tasks */
.awaitFeedbackContainer {
  width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.noAwaitFeedbackContainer {
  width: 350px;
  min-height: 64px;
  background-color: #E7E7E7;
  border-radius: 12px;
  border: 1px dashed #A8A8A8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.noAwaitFeedbackText {
  font-size: 22px;
  color: #A8A8A8;
}

/* Done Tasks */
.doneContainer {
  width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.noDoneContainer {
  width: 350px;
  min-height: 64px;
  background-color: #E7E7E7;
  border-radius: 12px;
  border: 1px dashed #A8A8A8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.noDoneText {
  font-size: 22px;
  color: #A8A8A8;
}

/* Drag and Drop */
.rotateCard {
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.containerGetHovered {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}