@import url('palette.css');

#sidebar {
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--sidebar-color);
  padding: 10px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  z-index: 1000;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--third-color) var(--sidebar-color);
}

#sidebar .round {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: border-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

#sidebar .round:hover {
  border-radius: 40%;
  border-color: var(--accent-color);
}

.text-center {
  display: inline-block;
}

.text-center i.fas.fa-plus {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #28a745;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
}

.text-center i.fas.fa-plus:hover {
  background-color: var(--accent-color);
  color: white;
  border-radius: 40%;
}

.abbr {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.abbr:hover {
  background-color: var(--accent-color);
  color: white;
  border-radius: 40%;
}

#sidebar a {
  text-decoration: none;
}