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

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

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

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

.sidebar-link:hover,
.nav-item:hover {
  background-color: #444;
  border-radius: 0.5rem;
}

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

.current:hover {
  background-color: #f66436;
  box-shadow: 2px 5px 20px #111;
  transform: translateY(-1px);
}

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

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

.search-button {
  border-radius: 50%;
  padding: 10px 16px;
  transition: all 0.4s;
}

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

.icon-parent {
  position: relative;
}

.icon-bullet::after {
  content: "";
  background-color: #f44336;
  border-radius: 50%;
  height: 12px;
  left: 15px;
  position: absolute;
  top: 7px;
  width: 12px;
}

@media (max-width: 768px) {
  .sidebar {
    position: static;
    height: auto;
  }

  .top-navbar {
    position: static;
  }

  .nav-item {
    padding-left: 6px;
  }
}

/* end of navbar */

/* cards */

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

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

/* end of cards */

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

/* end task list */
