.svg-container {
  position: relative;
  width: 100%;
  height: 100vh; /* or whatever height your section needs */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.svg-container svg {
  width: auto;
  height: 100%;
  max-width: 100%;
}

.svg-label {
  position: absolute;
  transform: translate(-50%, -50%);
  color: white;
  background: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  pointer-events: none;
  z-index: 5;
}

.svg-label {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svg-label.visible {
  opacity: 1;
}

.faded-circle-bg {

  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);


  pointer-events: none; /* makes sure it's non-interactive */
}

.label-nom { 
  font-size: 1.2rem;
  margin: 0;
  color: #e56b00 !important;
  font-weight: bold;
  letter-spacing: 1px;
}


.label-title {
  font-size: 1.5rem;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}

.label-desc {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #dddddd;
}