/* This creates a skinny side bar fixed to the top left of the page */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20rem;
  height: 1rem;
  padding: 1rem 1rem;
  background-color: #fafafa;
  z-index: 0;
  transition: height 0.1s ease-in-out;
}

/* when the user hovers on the sidebar, expand it */
.sidebar:hover {
  height: 22rem;
  background-color: #e9e9e9;
  z-index: 100;
}

/* make sure the contents of the navlink don't wrap when navbar collapses */
.sidebar .button {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
}

.sidebar .buttongroup {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
}

.sidebar .sidebar_ruler {
  overflow: hidden;
  visibility: hidden;
}

/* when the sidebar is hovered, reveal the labels */
.sidebar:hover .button {
  visibility: visible;
  opacity: 1;
}

.sidebar:hover .buttongroup {
  visibility: visible;
  opacity: 1;
  color: black;
}

.sidebar:hover .sidebar_ruler {
  visibility: visible;
  opacity: 0.3;
}

/* position the content relative to the collapsed sidebar */
.content {
  margin-left: 0rem;
  margin-right: 0rem;
  padding: 1rem 1rem;
}

.actionbtn {
  pointer-events: auto;
}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.task_nav_btn{
  margin:10px;
  width: 100px;
  height: 100px;
  padding-top: 10px;
  background: #19a591;
  border: none;
}

.ql-container{
  height: 640px !important;
  min-height: 100%;
  overflow-y: auto
}