body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
#detail-content-wrapper {
    transition-delay: 300ms;
}

/* Custom styles for toggle switches */
.toggle-checkbox:checked {
    right: 0;
    border-color: #0d9488; /* teal-600 */
}
.toggle-checkbox:checked + .toggle-label {
    background-color: #0d9488; /* teal-600 */
}

/* Style for map paths on hover */
#map-container svg path {
    transition: fill 0.2s ease-in-out;
}
#map-container svg path:hover {
    fill: #fbbf24; /* amber-400, gives highlight effect */
}

/* Tooltip style */
.tooltip {
    position: absolute;
    text-align: left;
    padding: 8px 12px;
    font-size: 0.875rem;
    background: #1f2937; /* gray-800 */
    color: white;
    border: 0px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    max-width: 250px;
    z-index: 10;
}