/* Theme Toggle Button Styling */
.md-header__button#__palette_1 {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  z-index: 10;
}

/* Add a subtle pulsing effect on hover to indicate it's interactive */
.md-header__button#__palette_1:hover {
  background-color: rgba(184, 109, 109, 0.2);
  transform: scale(1.05);
}

/* Light theme icon styling */
[data-md-color-scheme="default"] .md-header__button#__palette_1 svg {
  fill: #ffffff;
}

/* Dark theme icon styling */
[data-md-color-scheme="slate"] .md-header__button#__palette_1 svg {
  fill: #ffffff;
}

/* Improve transition when switching themes */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}
