/* ==========================================================================
   TERRAX3D CUSTOM CORE CSS - LIGHT MODE
   ========================================================================== */

/* Custom Scrollbars (Thin, themed colors for light mode) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f8fafc; /* slate-50 */
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* slate-300 */
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; /* slate-400 */
}

/* Smooth Transitions & Hardware Acceleration */
.transition-all-custom {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

/* Custom Drawer Animations */
.drawer-backdrop {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(15, 23, 42, 0.3); /* slate-900 with low opacity */
  transition: opacity 0.3s ease;
}

.drawer-content {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Select Dropdown Styling */
.custom-select-option:hover {
  background-color: #f1f5f9; /* slate-100 */
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
