/* Container */
#utility-buttons-group {
  position: fixed;
  top: 32px;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Base button styles */
#utility-buttons-group button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#utility-buttons-group button:hover {
  opacity: 1;
}

/* Individual button styles */

/* Animal Profile Button */
#animal-profile-btn {
  background: var(--color-iris);
  background-image: url('/assets/icons/paw.svg');
  background-repeat: no-repeat;
  background-position: center;
}

/* Night Shift Button */
#nightshift-toggle {
  background-color: var(--color-nimbus-medium);
  background-image: url('/assets/icons/moon.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.nightshift-on #nightshift-toggle {
  background-image: url('/assets/icons/sun.svg');
}

/* Developer Nest Button */
#dev-nest-btn {
  background: var(--color-olive);
  background-image: url('/assets/icons/leaf.svg');
  background-repeat: no-repeat;
  background-position: center;
  margin-top: auto;
}

/* Nest variant - positioned inside main-column, left of sidebar */
#utility-buttons-group.utility-buttons-nest {
  /* Position at the right edge of main-column (before sidebar) */
  right: calc(420px + 32px); /* sidebar width + gap */
}

/* On small screens without sidebar, use default positioning */
@media (max-width: 639px) {
  #utility-buttons-group.utility-buttons-nest {
    right: 32px;
  }
}