<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: "Segoe UI", sans-serif;
}
.tab-btn {
  transition: all 0.2s ease-in-out;
}

.tab-btn.active {
  background-color: #daf0fe;
  border-radius: 8px;
  color: #0b79e5;
  height: 36px;
}

.menu-enter {
  opacity: 0;
  transform: scaleY(0.95);
  transition: all 0.3s ease;
}
.menu-enter-active {
  opacity: 1;
  transform: scaleY(1);
}
.menu-leave {
  opacity: 1;
  transform: scaleY(1);
  transition: all 0.3s ease;
}
.menu-leave-active {
  opacity: 0;
  transform: scaleY(0.95);
}</pre></body></html>