/* Tab Navigation Styles */
.info-tabs-container {
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
}

.info-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  padding: 0;
  margin: 0;
  gap: 0;
  width: 100%;
}

.info-tab {
  background: transparent !important;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #999;
  transition: color 0.3s ease;
  outline: none;
  margin-bottom: -1px;
  flex: 1;
  text-align: center;
}

.info-tab:hover {
  color: #666;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid transparent;
  box-shadow: none !important;
  text-shadow: none !important;
}

.info-tab.active {
  color: #1976d2;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid transparent;
  box-shadow: none !important;
  text-shadow: none !important;
}

.info-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #1976d2;
  border-radius: 2px 2px 0 0;
}

.info-tab .tab-text {
  display: block;
}

/* Remove card content - tabs only */
.info-cards-container {
  display: none;
}

/* Text below tabs styling */
#\31 {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  color: #5F6368;
  margin: 24px 0;
  padding: 0;
  line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 768px) {
  .info-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  
  .info-tab {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  /* Reduce text below tabs spacing */
  #\31 {
    margin: 8px 0 !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .info-tab {
    padding: 6px 10px;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
  }
  
  /* Reduce text below tabs spacing on small mobile */
  #\31 {
    margin: 6px 0 !important;
    font-size: 0.8rem !important;
  }
}

