/* Project Tabs Styling */


.tab-inactive {
  background-color: rgba(0, 240, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}


.tab-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  min-width: 24px;
  height: 24px;
  font-size: 0.8rem;
  padding: 0 6px;
}

.tab-active .tab-counter {
  background-color: rgba(4, 7, 14, 0.2);
  color: #FFFFFF;
}

/* Project Card animations */
.project-card-container {
  transition: all 0.5s ease;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

/* Tab container with nice scrollbar for many project types */
.tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #00F0FF rgba(0, 240, 255, 0.1);
}

.tabs-container::-webkit-scrollbar {
  height: 6px;
}

.tabs-container::-webkit-scrollbar-track {
  background: rgba(0, 240, 255, 0.1);
  border-radius: 10px;
}

.tabs-container::-webkit-scrollbar-thumb {
  background: #00F0FF;
  border-radius: 10px;
}

.tab-active {
  background-color: #00F0FF;
  color: #04070E;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}

