/* Teova Teknoloji - Özel Stiller */
/* Material Symbols Fill kontrolü */
.material-symbols-outlined.fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fbf8fc;
}
::-webkit-scrollbar-thumb {
  background: #c6c6ce;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #76767e;
}

/* Selection color */
::selection {
  background: #d8e2ff;
  color: #001a42;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid #0058be;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Animation delays for staggered entries */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
