/* Mobile toggle buttons */
.mobile-toggle-buttons {
    display: none; /* Hidden by default (desktop) */
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
}

@media (max-width: 699px) {
    .mobile-toggle-buttons {
        display: flex; /* Show only on mobile */
    }
}

#area-label {
  text-align: center;
  color: #f1a638 !important;
}

.view-toggle-btn {
    padding: 12px 24px;
    border: 2px solid #f1a638;
    background-color: transparent;
    color: #f1a638;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-toggle-btn:hover {
    background-color: rgba(241, 166, 56, 0.1);
}

.view-toggle-btn.active {
    background-color: #f1a638;
    color: white;
}

.view-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 166, 56, 0.3);
}

g[id^="screen"] {
  * {
    fill: transparent !important;
}
}

g[id^="Woman_"],
g[id^="Man_"] {

  #screen *,
  [data-name="screen"] * {
    fill: rgba(0, 0, 0, 0) !important;
    display: block !important;
  }

  .st0, .st1, .st2 {
    display: none;
  }
  
  &:hover, &.active {
    .st0, .st1, .st2 {
      display: block;
    }
    
    path {
      fill: #f1a638;
      display: block;
    }
  }
  
}