/* Buttons */
/* NAV */
.sidebar-button-container {
  position: sticky;
  top: 10px;
  height: 200px;
  padding: 5px;
}

.sidebar-button {
  margin-bottom: 10px;
  padding: 5px;
  border: none;
  border-radius: 10px;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar-button:hover {
  background-color: rgb(206, 100, 19);
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

.sidebar-button i {
  font-size: 18px;
}

.sidebar-button:disabled {
  color: #555;
  background-color: #333; /* Dark gray background when disabled */
  cursor: not-allowed;
}

.download-button {
  background-color: #333;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 13px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1000;
}

.download-button:hover {
  background-color: #777;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.github-button {
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: 10px;
  margin-right: 5px; /* Add right margin */
  padding: 5px;
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out;
  flex-shrink: 0; /* Prevent the button from shrinking */
}

.github-button:hover {
  opacity: 1;
}

.github-button i {
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  padding: 5px;
  transition: box-shadow 0.6s ease-in-out;
}

.github-button:hover i {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.remove-button {
  background-color: chocolate; /* Dark red background */
  border: none;
  border-radius: 5px;
  color: #fff; /* White text */
  cursor: pointer;
  font-size: 12px;
  min-width: 65px;
  padding: 5px;
}

.remove-button:hover {
  background-color: rgb(141, 72, 22);
}
