body {
  box-sizing: border-box;
  margin: 0;
  background-color: rgb(0, 0, 0);
  color: azure;
}

.card {
  border: 2px solid rgb(56, 55, 55);
  /* height: 40vh; */
  width: 300px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(44, 46, 65);
  border-radius: 10px;
}
.hero {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.container {
  display: flex;
  gap: 20px;
  margin: auto;
  margin-top: 20px;
  justify-content: center;
  padding: 15px 10px;
  flex-wrap: wrap;
}

p {
  padding: 15px 10px;
  border: 2px solid rgb(210, 210, 210);
  width: 60%;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  cursor:  row-resize;
  border-radius: 10px;
}
.flying{
  transform: scale(1.1);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  cursor: grabbing;
}
/* Smooth transition when dropped */
@keyframes dropEffect {
  0% {
    transform: scale(1) translateY(-5px);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

p.drop {
  animation: dropEffect 0.3s ease-out;
}

#addBtn {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
#addBoard {
  height: 50px;
  width: 50px;
  padding: 15px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}
.taskContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.todoHhero {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.flexfortask {
 width: 90%;
}

#deleteBtn,#editBtn  {
  cursor: pointer;
  padding: 4px 6px ;
  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 5px;
}


.flexforContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.task-text{
    width: 72%;
}
.newBoardHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;  
}

.pointer{
    cursor: pointer;
}