* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Add smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Dark Variation */
.container.dark {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-dark);
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
}

/* Light Variation */
.container.light {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-light);
  background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
}

/* Add padding to top to prevent content from being hidden behind the fixed navbar */
body {
  padding-top: 60px; /* Adjust based on navbar height */
  padding-bottom: 60px; /* Adjust based on footer height */
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Custom Scrollbar Styling */

/* Webkit Browsers (Chrome, Safari) */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
  border: 2px solid #f1f1f1;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
