.sidebar {
  display: flex;
  flex-direction: column;
  width: 240px;
  padding: 24px 16px;
  background-color: #f5f9ff;
  flex-shrink: 0;
}

.sidebar button {
  font-size: 16px;
  font-weight: 500;
  color: #1e3a8a;
  background-color: #f5f9ff;
  border-style: none;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: start;
}

.sidebar button:hover {
  background-color: #dcebff;
}

.sidebar button:active {
  background-color: #1e6fff;
}

.buttonFocus {
  font-weight: 800 !important;
  background-color: #dcebff !important;
}

@media (max-width: 800px) {
  .sidebar {
    flex-direction: row;
    width: fit-content;
    padding: 0;
    background-color: transparent;
    gap: 8px;
  }

  .sidebar button {
    background-color: #f5f9ff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);

    text-align: center;
    font-size: 14px;
    padding: 16px;
  }
}
