body {
  background-color: black;
  color: white;
}
#main {
  text-align: center;
}
th,
td {
  padding: 15px 20px;
  overflow: auto;
}
th {
  text-align: center;
}
td {
  border-left: 0.5px dotted rgba(255, 255, 255, 0.5);
  scroll-padding-left: 0px;
}
.marDiv {
  float: left;
  overflow-x: auto;
  width: 150px;
  margin: 0 7px 0 7px;
}
.id {
  box-sizing: border-box;
  width: 10px;
}
.taskTitle {
  box-sizing: border-box;
  width: 80px;
}
.dueTime {
  box-sizing: border-box;
  width: 50px;
}
.notes {
  box-sizing: border-box;
  width: 160px;
}
#mainTable {
  display: block;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
  border: 1px solid white;
  overflow-y: auto;
  height: 300px;
  border-collapse: collapse;
}
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 1);
}
th {
  background-color: darkcyan;
}
#inpDiv {
  text-align: left;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
  display: grid;
  row-gap: 5px;
  column-gap: 10px;
}
.inp {
  grid-column-start: 2;
  grid-column-end: 3;
  background-color: darkslategrey;
  border: none;
  color: white;
}
.inp::placeholder {
  color: aliceblue;
  opacity: 0.5;
}
.inpLabels {
  grid-column-start: 1;
  grid-column-end: 2;
}
.inp:focus {
  outline: none;
}
#butDiv {
  padding-top: 18px;
  width: fit-content;
  margin: auto;
}
.but {
  width: 100px;
  margin: 4px;
  border-radius: 3px;
  border: none;
  padding-bottom: 2px;
  height: 22px;
}
.butS {
  position: relative;
  width: 100px;
  border-radius: 3px;
  border: none;
  padding-bottom: 2px;
  margin-bottom: 4px;
  height: 25px;
}
#noteCol {
  overflow-x: auto;
}
@keyframes error {
  0% {
    left: 0px;
    transition-timing-function: ease-out;
  }
  25% {
    left: 5px;
    transition-timing-function: ease-in;
  }
  75% {
    left: -5px;
    transition-timing-function: ease-out;
  }
  100% {
    left: 0px;
    transition-timing-function: ease-in;
  }
}
