/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #07101D;
}
::-webkit-scrollbar-thumb {
  background: #1E3E62;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* Floorplan Interactive SVG styling */
.floor-unit {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.floor-unit:hover {
  filter: brightness(1.25);
  transform: translateY(-2px);
}
.floor-unit.active {
  stroke: #D4AF37 !important;
  stroke-width: 3px !important;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Animation utilities */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-in {
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Touch targets */
button, select, input {
  touch-action: manipulation;
}

/* RTL number fixes */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}