body {
  margin: 0px;
  visibility: hidden;
}

.d-flex {
  display: flex;
}

li:hover .d-none {
  display: block;
}

.boardLink {
  background-color: #091931;
  color: white !important;
}

.boardContent {
  height: calc(100% - 96px);
  max-width: 1440px;
  box-sizing: border-box;
  z-index: -2;
}

h1 {
  margin: 0;
  font-size: 60px;
}

.contentHeader {
  width: 1056px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0px 56px 64px;
}

.inputarea {
  display: flex;
  align-items: center;
  gap: 32px;
}

.input {
  box-sizing: border-box;
  width: 312px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #A8A8A8;
  gap: 16px;
}

.inputarea button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--gray);
  color: white;
  font-size: 20px;
  border-radius: 10px;
  border: none;
}

.inputarea button:hover {
  background-color: var(--blue);
  cursor: pointer;
  scale: 1.02;
  box-shadow: 0px 8px 5px 0px #0000001a;
}

input {
  width: 100%;
  border: none;
  border-right: 1px solid #A8A8A8;
}

input:focus {
  outline: none;
}

.input img:hover {
  background-color: var(--background);
  border-radius: 100%;
  cursor: pointer;
  scale: 1.2;
}

.listsHeaders {
  display: flex;
  align-items: center;
  padding: 0px 64px 0px 64px;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  box-sizing: border-box;
  width: 100%;
}

.listheader {
  width: 224px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.image:hover img {
  content: url('../assets/img/png/blueHoverBoard.png');
  cursor: pointer;
}

.taskArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 64px;
  gap: 20px;
  box-sizing: border-box;
  height: calc(100vh - 350.75px);
 
}

.taskColumn {
  position: relative;
  border-radius: 10px;
  width: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.noTask {
  width: 90%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--border);
  font-size: 16px;
  border-radius: 10px;
  background-color: #e7e7e7;
  border: dashed var(--border);
}

.task {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  display: none;
}

.progress-bar-fill {
  height: 100%;
  background-color: #4285f4;
  width: 0;
  transition: width 0.52s;
}

.subtaskProgressText {
  display: none;
  width: 200px;
}

.subtaskArea {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.taskCard {
  width: 98%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 16px;
  gap: 24px;
  z-index: 10;
}

.taskCategory {
  width: fit-content;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  padding: 4px 16px;
}

.userTask {
  background-color: #0038FF;
  display: flex;
  align-items: center;
}

.technicalTask {
  background-color: #1FD7C1;
  display: flex;
  align-items: center;
}

.taskInfo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.taskTitle {
  font-weight: 700;
}

.taskDescription {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 16px;
  color: #A8A8A8;
}

.taskContacts {
  display: flex;
}

.assignedTaskContacts {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: white;
  margin-right: -10px;
}

.contactsPrioArea {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.taskCard:hover {
  cursor: pointer;
}

.taskCardClickHold {
  transform: rotate(5deg);
  box-shadow: 2px 2px 12px 2px gray;
}

.columnDragTo {
  border: 2px solid var(--border);
  box-shadow: 2px 2px 12px 2px gray;
}

.dragging {
  opacity: 0.5;
}

.openedTaskContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  position: fixed;
  z-index: 99;
  background-color: rgba(151, 149, 149, 0.37);
}

.openedTask {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  background-color: white;
  width: 525px;
  box-sizing: border-box;
  max-height: 80vh;
  height: fit-content;
  border-radius: 30px;
  padding: 48px 40px;
  scrollbar-width: none;
}

.openedTaskCategory {
  display: flex;
  justify-content: space-between;
}

.openedTaskClose:hover {
  background-color: var(--background);
  border-radius: 16px;
  cursor: pointer;
}

.taskDetails {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.taskDetails h1{
  font-size: 32px;
}

.deleteEditArea {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 24px;
}

.edit,
.delete {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

#openedSubtasks {
  max-height: 110px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.openedSubtaskTitle {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  gap: 16px;
  border-radius: 10px;
  width: 100%;
}

.openedSubtaskTitle:hover {
  background-color: var(--background);
  cursor: pointer;
}


.taskCategoryContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taskCategoryContainer img {
    width: 20px;
    height: 20px;
}

.mobileArrowsContainer {
  align-items: center;
  justify-content: space-between;
  display: flex;
  height: 30px;
  width: 35px;
}
.mobileArrowsContainer:hover{
  background-color: var(--gray);
  border-radius: 8px;
}

.leftArrow {
    rotate: 90deg;
    margin-right: -10px;
}

  .rightArrow {
    rotate: -90deg;
}

.column{
  display: flex;
  flex-direction: column;
  align-items: center;
}