:root {
  --dark-blue: #1434A4;
  --light-blue: #1F51FF;
  --light-black: #28282B;
  --black: #1B1212;
  --green: #228B22;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.custom-navbar {
  background-color: var(--dark-blue);
  z-index: 1;
}

.started-btn {
  border: none;
}

.started-btn:hover {
  background-color: var(--green);
}

.light-blue-bg {
  background-color: var(--light-blue);
}

.dark-blue-bg {
  background-color: var(--dark-blue);
}

.white-colour {
  color: white;
}

.save-note {
  display: none;
}

.highlighted-note {
  background-color: var(--light-blue);
  color: white;
}

.icons i {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform .2s;
}

.icons i:hover {
  transform: scale(1.2);
}

.note-textarea,
.note-title {
  color: black;
  width: 100%;
  outline: none;
  border: none;
}

.note-textarea {
  resize: none;
  height: calc(100% - 63px);
  padding-top: 15px;
}

.note-title {
  height: 50px;
  margin-top: 13px;
  font-size: 3rem;
}

.note-title:read-only,
.note-textarea:read-only {
  color: #757575;
}

.list-container .card {
  height: calc(100vh - 70px);
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.list-container {
  padding-left: 0;
}

.list-container .list-group,
.list-container .list-group-item:first-child,
.list-container .card {
  border-top: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.list-item-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-left: 15px;
  padding-top: 15px;
}

.delete-note {
  position: relative;
  z-index: 1;
}

.list-container i {
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .2s;
}

.list-container i:hover {
  transform: scale(1.2);
}

.list-container .list-group-item {
  border-left: none;
  border-right: none;
  padding: 20px;
  cursor: pointer;
}
