/* Global Styles for Sitezilla Web Studio */

/* CSS Grid Background Pattern */
.bg-grid {
  background-image:
    linear-gradient(rgba(102, 187, 106, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 187, 106, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: -1px -1px;
}

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

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #66BB6A;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2E7D32;
}

/* Loading spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid #66BB6A;
  outline-offset: 2px;
}
