body {
  font-family: "Montserrat", sans-serif;
  background-color: #eee;
}

img {
  width: 3rem;
  height: 3rem;
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 100vmax;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

@supports (scrollbar-color: #555 #222) {
  * {
    scrollbar-color: #555 #222;
    scrollbar-width: thin;
  }
}

.sidebar {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url(images/img1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 5px 7px 25px #999;
  overflow-y: scroll;
}

.bottom-border {
  border-bottom: 1px groove #eee;
}

.sidebar-link {
  transition: all 0.4s;
}

.sidebar-link:hover {
  background-color: #444;
  border-radius: 5px;
}

.current {
  background-color: #f44336;
  border-radius: 6px;
  box-shadow: 2px 5px 10px #111;
  transition: all 0.3s;
}

.current:hover {
  background-color: #f66;
  border-radius: 7px;
  box-shadow: 2px 5px 20px #111;
  transform: translateY(-1[x]);
}

.search-input {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #999;
  transition: all 0.4s;
}

.search-input:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #dc3545;
}

.search-button {
  border-radius: 100vmax;
  width: 3rem;
  height: 3rem;
  transition: all 0.4s;
}

.search-button:hover {
  background-color: #eee;
  transform: translateY(-1px);
}

.icon-parent {
  position: relative;
}

.icon-bullet::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  height: 0.75rem;
  width: 0.75rem;
  background-color: #f44336;
  border-radius: 100vmax;
}

@media (max-width: 767px) {
  .sidebar {
    position: static;
    height: auto;
  }
  .top-navbar {
    position: static;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
      url(images/img1.jpeg);
    background-position: bottom;
    background-repeat: no-repeat;
    box-shadow: 5px 7px 25px #999;
  }
  .nav-icon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .top-navbar .nav-item {
    background-color: #fff;
    padding: 0.625rem 22px;
    margin-top: 2rem;
    border-radius: 100vmax;
    cursor: pointer;
  }
}

.card-common {
  box-shadow: 1px 2px 5px #999;
  transition: all 0.4s;
  cursor: progress;
}

.card-common:hover {
  box-shadow: 2px 3px 15px #999;
  transform: translateY(-1px);
}

.task-border {
  border-left: 3px solid #f66436;
}

@media (max-width: 25rem) {
  .card-image {
    overflow-x: scroll;
  }
  .card-image img {
    display: none;
  }
}
