/* Base Resets */
body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-color: #020617;
  -webkit-tap-highlight-color: transparent;
}

#root {
  height: 100dvh; /* Dynamic viewport height for mobile browsers */
  width: 100vw;
  position: relative;
  z-index: 10;
}

/* 3D Canvas Mobile Optimization */
canvas {
  touch-action: none; /* Prevents scrolling while rotating model */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* Utility Class: Hide Scrollbar but allow scroll */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Glassmorphism Panel Style */
.glass-panel {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* CMDK / Search Input Styling */
.cmdk-input-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 12px;
}

.cmdk-input {
  background: transparent;
  border: none;
  width: 100%;
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  color: white;
}

.cmdk-input::placeholder {
  color: #94a3b8;
}

/* Static Footer Styling (Restored to Exact Original Values) */
#static-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px; /* Restored from 10px */
  color: #94a3b8; /* Restored Lighter Slate */
  background: rgba(2, 6, 23, 0.75); /* Restored Opacity */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  z-index: 50;
  pointer-events: none;
}