@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

* {
  font-family: "Lato", sans-serif;
}

.noshow {
  display: none !important;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.card {
  width: 900px;
  height: 640px;
  background: #fdfdfd;
  border-radius: 10px;
  filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.15));
}

.card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.card__date-searchbar-createitem-container,
.card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.card__date-searchbar-createitem-container {
  justify-content: space-around;
  width: 95%;
  margin: 15px;
}

.date__day {
  margin: 5px;
}

.day__day-number {
  font-size: 43px;
  font-weight: 600;
  color: #252525;
}

.date__month-year-container {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.date__month,
.date__year {
  margin: 2px;
  margin-left: 5px;
}

.month__month-name {
  text-transform: capitalize;
}

.month__month-name,
.year__year-number {
  font-size: 16px;
  font-weight: 300;
  color: #252525;
}

.card__searchbar {
  /*margin: 10px;*/
  display: flex;
  align-items: center;
  position: relative;
  border: 0px solid;
  height: 43px;
  overflow: hidden;
  width: 50%;
  border-radius: 10px;
  filter: drop-shadow(0px 16px 40px rgba(112, 144, 176, 0.2));
}

input[type="text"].searchbar__input {
  height: 43px;
  width: 100%;
  padding: 10px;
  line-height: 30px;
  font-size: 16px;
  /* padding: 0;*/
  border: none;
}

.searchbar__input:focus,
.createitem__btn:focus,
.inputbox__input-name:focus,
.searchbar__btn:focus,
.card__btncreate:focus,
.inputbox__input-priority:focus,
.inputbox__reminderdate:focus {
  outline: none;
}

.searchbar__select {
  position: absolute;
  right: 40px;
  top: 0;
  margin: 0;
}

.searchbar__select {
  cursor: pointer;
  outline: 0;
  border-left: 2px solid #7ed56f;
  border-top: 2px solid #7ed56f;
  border-bottom: 2px solid #7ed56f;
  border-right: 0px;
  height: 43px;
  width: 100px;
  font-size: 15px;
  border-radius: 5px;
  background: #fff;
  padding: 0px 10px;
  color: #252525;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.searchbar__btn {
  position: absolute;
  height: 43px;
  width: 45px;
  right: 0;
  top: 0;
  margin: 0;
  background: #7ed56f;
  border: none;
  background-image: url(../icons/search.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0px 10px 10px 0px;

  cursor: pointer;
}

.createitem__btn {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #55c57a;
  filter: drop-shadow(0px 16px 40px rgba(112, 144, 176, 0.2));
  border: none;
  background-image: url(../icons/create.svg);
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.card__todolist-table {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.todolist-table {
  border-collapse: separate;
  width: 90%;
  text-align: center;
  border-spacing: 0px 4px;
}

table th:nth-child(1),
table td:nth-child(1) {
  border-radius: 5px 0px 0px 5px;
}

table th:nth-last-child(1),
table td:nth-last-child(1) {
  border-radius: 0px 5px 5px 0px;
}

td,
th {
  padding: 8px;
}

thead.todolist-table__tabletitle tr {
  text-align: center;
  background-color: #55c57a;
  color: #fff;
  height: 40px;
}

tbody.todolist-table__tableitem tr {
  text-align: center;
  background-color: #fff;
  color: #252525;
  height: 40px;

  filter: drop-shadow(0px 16px 40px rgba(112, 144, 176, 0.2));
}

.tableitem__options-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.option-icons__icon {
  width: 22px;
  height: 22px;
  margin: 5px 7px;
  cursor: pointer;
}

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__card {
  background-color: #fdfdfd;
  padding: 15px;
  width: 600px;
  height: 320px;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.card__close-box {
  top: 10px;
  right: 10px;
  position: absolute;
}

.close-box__btnclose {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.Low {
  color: #3fc380;
}

.Medium {
  color: #f5ab35;
}

.High {
  color: #ef4836;
}

.card__title {
  margin: 0px 0px 30px 0px;
  font-size: 30px;
  color: #252525;
  font-weight: 400;
}

.card__input-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 75%;
}

.inputbox__input-name,
.inputbox__input-priority,
.inputbox__remindertime,
.inputbox__reminderdate {
  filter: drop-shadow(0px 16px 40px rgba(112, 144, 176, 0.2));
  height: 25px;
  width: 43%;
  padding: 10px;
  line-height: 30px;
  font-size: 16px;
  color: #252525;
  background-color: #fff;
  /* padding: 0; */
  border: none;
  border-radius: 10px;
  margin: 10px 5px;
}

.inputbox__input-priority {
  cursor: pointer;
  outline: 0;
  border: 2px solid #55c57a;
  height: 45px;
  width: 48%;
  border-radius: 5px;
  background: #fff;
  padding: 0px 10px;
  color: #252525;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.card__btncreate,
.card__btnedititem {
  display: block;
  border: none;
  background-color: #55c57a;
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  width: 75%;
  height: 45px;
  margin: 20px 0px;
  border-radius: 10px;
  cursor: pointer;
}
