/* Ops Center — minimal custom styles (Tailwind handles most) */

[x-cloak] { display: none !important; }

/* Smooth transitions */
.bg-gray-750 { background-color: rgb(38 38 42); }

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #374151; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4B5563; }

/* Input focus glow */
input:focus { box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5); }

/* Mobile: make command bar larger tap target */
@media (max-width: 640px) {
  input[type="text"] {
    font-size: 16px; /* Prevents iOS zoom */
  }
}
