.emts-tab-toggle-wrapper {
    text-align: center;
}
.emts-tab-toggle-heading {
    font-size: 2em;
    margin-bottom: 10px;
}
.emts-tab-toggle-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: black;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #2196F3;
}
input:checked + .slider:before {
    transform: translateX(24px);
}
.emts-tab-toggle-content {
    display: none;
    transition: all 0.3s ease-in-out;
}
.emts-tab-toggle-content.active {
    display: block;
}


.hotspot-content {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
    width: 150px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 99;
}

.hotspot-marker.trigger-hover:hover .hotspot-content {
    display: block;
}

.hotspot-marker.active .hotspot-content {
    display: block;
}
