#world-map-overlay {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 450px !important;
    height: 40px !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    z-index: 999999 !important;
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transition: height 0.3s ease-in-out !important;
    overflow: hidden !important;
    user-select: none !important;
    cursor: move !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

#world-map-overlay * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

#world-map-overlay.open {
    height: 550px !important;
}

#world-map-button {
    width: 100% !important;
    height: 40px !important;
    background: white !important;
    border: none !important;
    cursor: move !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 15px !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: #333 !important;
    border-bottom: 1px solid #eee !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

#world-map-button:hover {
    background: #f5f5f5 !important;
}

.button-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#button-logo {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

#selected-country {
    color: #663399 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    text-align: center !important;
}

#world-map-content {
    width: 100% !important;
    height: 405px !important;
    position: relative !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    background: white !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

#interactive-map {
    width: 100% !important;
    height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

#interactive-map svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

#interactive-map svg path {
    transition: all 0.3s ease-in-out !important;
    fill: #9856da !important;
    opacity: 0.3 !important;
    cursor: pointer !important;
    stroke: none !important;
}

#interactive-map svg path.hover,
#interactive-map svg path.selected {
    fill: #9966cc !important;
    opacity: 1 !important;
    stroke: #ffffff !important;
    stroke-width: 0.5px !important;
    filter: brightness(1.4) !important;
    z-index: 1 !important;
}

.menu-container {
    padding: 10px !important;
    margin-top: 10px !important;
    border-top: 1px solid #eee !important;
    flex-shrink: 0 !important;
}

.menu-container:first-child {
    border-top: none !important;
    margin-top: -5px !important;
}

.menu-title {
    font-size: 12px !important;
    color: #666 !important;
    margin-bottom: 8px !important;
}

.device-options {
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
}

.device-option {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.device-option:hover {
    background: #f5f5f5 !important;
}

.device-option.selected {
    background: #9856da !important;
    border-color: #9856da !important;
    color: white !important;
}

.device-option img {
    width: 20px !important;
    height: 20px !important;
}

.segment-options {
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
    margin-top: 10px !important;
}

.segment-option {
    padding: 6px 12px !important;
    border: 1px solid #eee !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 12px !important;
}

.segment-option:hover {
    background: #f5f5f5 !important;
}

.segment-option.selected {
    background: #9856da !important;
    border-color: #9856da !important;
    color: white !important;
}

.country-display {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8px !important;
    background: #f5f5f5 !important;
    border-radius: 6px !important;
    margin-top: 8px !important;
}

#selected-country {
    color: #663399 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    text-align: center !important;
}

.map-container {
    display: flex !important;
    flex-direction: column !important;
}

.map-container .menu-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.map-container #selected-country {
    margin-left: 10px !important;
    font-size: 12px !important;
} 