/* Theme toggle button styling */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.theme-toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.theme-icon {
  transition: all 0.3s ease;
  color: #5c5962;
}

.theme-toggle-btn:hover .theme-icon {
  color: #27262b;
}

[data-theme="dark"] .theme-toggle-btn {
  background: rgba(60, 60, 67, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background: rgba(60, 60, 67, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .theme-icon {
  color: #eeebee;
}

[data-theme="dark"] .theme-toggle-btn:hover .theme-icon {
  color: #ffffff;
}
