* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.header {
  display: flex;
  background-color: #ff5c8d;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
  font-size: 30px;
  border-bottom: 2px solid #ffd6e8;
}

.menu-icon {
  height: 6vh;
  width: 3.5vw;
  padding: 10px;
}

.menu-icon:hover {
  cursor: pointer;
  background-color: #ffb6d9;
  border-radius: 5px;
  user-select: none;
}

.menu-icon img {
  height: 100%;
  width: 100%;
}

#logo {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: white;
}

.section {
  min-height: 95vh;
  background-color: #fff0f6;
  display: flex;
}

.sidebar {
  width: 30%;
  min-height: 100%;
  background-color: #fff7fb;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
}

.upper-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0.5rem;
  user-select: none;
}

.heading {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: italic;
  border-bottom: 2px solid #a63a64;
  color: #a63a64;
  user-select: none;
}

.upper-sidebar div img {
  height: 4vh;
}

.sidebar .item {
  display: flex;
  gap: 0.5rem;
  color: #5c3a4d;
  font-weight: 400;
  align-items: center;
  border-radius: 5px;
  text-transform: capitalize;
  padding: 0 1rem;
  user-select: none;
}

.lower-item {
  display: flex;
  gap: 0.5rem;
  color: #5c3a4d;
  font-weight: 400;
  align-items: center;
  border-radius: 5px;
  text-transform: capitalize;
  padding: 2px 5px;
  position: relative;
}

.item .item {
  padding: 0;
  user-select: none;
}

.sidebar .item:hover,
.lower-item:hover {
  background-color: #ffe0ef;
  cursor: pointer;
}

.lower-sidebar div img {
  height: 3vh;
  padding: 3px;
}

.lower-sidebar {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.5rem;
  position: relative;
}

.all-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0.4rem;
  user-select: none;
}

.lower-sidebar .item {
  height: 4vh;
  position: relative;
}

.lower-sidebar .lower-item :last-child {
  margin-left: auto;
  height: 3.3vh;
}

.btn-item:hover {
  cursor: pointer;
}

#project-submit-btn {
  padding: 5px;
  background-color: #fcd6e8;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  display: flex;
  gap: 1rem;
  justify-content: center;
  color: #a63a64;
  align-items: center;
  border-radius: 6px;
}

#project-submit-btn:active {
  transform: scale(1.1);
}

#project-submit-btn img {
  height: 3vh;
}

.main-section {
  padding: 2rem 3rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.banner {
  background-color: #e63978;
  width: 100%;
  height: 17%;
  border-radius: 6px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: left;
}

.banner-head {
  font-family: "Raleway", sans-serif;
  color: white;
  font-size: 2.5rem;
  text-transform: capitalize;
}

.new-project-inputbox-section,
.rename-inputbox-section {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.new-project-inputbox-section-above,
.rename-inputbox-section-above {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.new-project-inputbox-section-above input,
.rename-inputbox-section-above input {
  height: 5vh;
  padding: 5px;
  color: #5c3a4d;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  width: 100%;
  font-size: 1rem;
}

.new-project-inputbox-section-below,
.rename-inputbox-section-below {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.new-project-inputbox-section-below button,
.rename-inputbox-section-below button {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  color: white;
  padding: 0.4rem 1rem;
  border: none;
}

.btn1 {
  background-color: #ff66a3;
}

.btn2 {
  background-color: #cc3366;
}

.btn1:hover {
  background-color: #ff80b3;
  cursor: pointer;
}

.btn2:hover {
  background-color: #e6457a;
  cursor: pointer;
}

.dropbox {
  height: 12vh;
  width: 5.5vw;
  background-color: #fff0f8;
  border: 3px;
  position: absolute;
  left: 14vw;
  top: -3.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 3px 3px #f3d6e8;
  padding: 0.3rem;
}

.edit-btn,
.delete-btn {
  height: 50%;
  padding: 0.2rem 0.6rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.edit-btn:hover,
.delete-btn:hover {
  cursor: pointer;
  background-color: #ffd6eb;
  border-radius: 3px;
}

.button-collection-section {
  display: flex;
  gap: 1rem;
}

.task-section {
  margin-top: 2rem;
}

.task-input-form {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
  gap: 0.5rem;
}

.div-flex {
  display: flex;
  flex-direction: column;
}

.div-flex input,
.div-task-details {
  padding: 0.5rem;
  font-size: 1.1rem;
  border-radius: 3px;
  color: gray;
  font-weight: 400;
}

.div-task-details {
  height: 4rem;
  text-align: start;
  font-size: 1.1rem;
  resize: none;
}

.button-section-task-input-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.button-section-task-input-form button {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  color: white;
  padding: 0.4rem 1rem;
  border: none;
}

.add-new-task {
  display: flex;
  padding: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: black;
  gap: 0.5rem;
  align-items: center;
  padding-left: 3rem;
}

.add-new-task:hover {
  cursor: pointer;
  background-color: #fff0f6;
  border-radius: 5px;
  color: #333;
}

.add-new-task img {
  height: 1.15rem;
}

.form-output {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e6cfe0;
  padding: 0.4rem 1rem;
  border-radius: 4px;
}

.left-of-form-output,
.right-of-form-output {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.right-of-form-output img {
  height: 4vh;
  padding: 0.3rem;
}

.new-star {
  padding: 0.2rem;
}

.date {
  border: 1px solid #e6cfe0;
  padding: 0.5rem;
  border-radius: 20%;
}

#task-checkbox {
  width: 0.9rem;
  height: 0.9rem;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #a63a64;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

#task-checkbox:checked {
  background-color: #e63978;
}

.task-title-and-task-description-display {
  width: 53vw;
}

.form-output-title-display {
  font-size: 1.2rem;
  text-transform: capitalize;
}

.form-output-description-display {
  font-size: 1rem;
  font-weight: 400;
}

.new-star:hover,
.more-options-form-output:hover {
  background-color: #ffe0ef;
  border-radius: 5px;
  cursor: pointer;
}

.completed {
  text-decoration: line-through;
}
