/* ─── NEW FOUNDATION: XP-STYLE FAB MENU ───────────────────────── */
#xp-fab-menu {
  position: fixed;
  bottom: 12px;
  left: 12px;
  z-index: 99999;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #399D39 0%, #5CB75C 100%);
  border: 1px solid #2D7A2D;
  border-radius: 6px;
  padding: 4px 12px 4px 6px;
  color: white;
  font-weight: 700;
  font-family: "Tahoma", sans-serif;
  font-size: 13px;
  cursor: pointer;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.3), 0 2px 4px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

#xp-fab-menu:active {
  transform: translateY(1px);
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.4);
}

#xp-fab-menu img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  transition: transform 0.6s ease-in-out;
}

#xp-fab-menu:hover img {
  transform: rotate(360deg);
}

/* ─── Minimal Page Styles ─── */
.minimal-page {
  padding: 40px 20px;
  text-align: center;
  flex: 1;
}

.minimal-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.minimal-page p {
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}
