        /* Main card style */
        .map-card {
            width: 90%;
	    margin:0 auto;
            background: #0c1a2b;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
            overflow: hidden;
            transition: all 0.2s;
        }

        /* Tabs section */
        .tabs-bar {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 1rem 1.5rem;
            background: #07162a;
            border-bottom: 1px solid #2a405e;
        }

        .tab-btn {
            font-size: 1rem;
            font-weight: 700;
            padding: 0.6rem 1.8rem;
            border: none;
            background: transparent;
            color: #cfddee;
            cursor: pointer;
            border-radius: 60px;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
        }

        .tab-btn.active {
            background: #ffd966;
            color: #1e2f3a;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .tab-btn:first-child.active {
            background: #ffd966;
            color: #1e2f2c;
        }

        .tab-btn:last-child.active {
            background: #2ecc71;
            color: #0a2a1a;
        }

        .tab-btn:not(.active):hover {
            background: #2e4a6e;
            color: white;
        }

        /* Map container card body */
        .map-body {
            padding: 1rem 1rem 1.2rem 1rem;
            background: #0f1f32;
        }

        .map-wrapper {
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255,215,0,0.15);
        }

        #worldMap {
            height: 400px;   /* REDUCED HEIGHT from 560px to 400px */
            width: 100%;
            background: #112a68;
            outline: none;
        }

        /* Leaflet overrides */
        .leaflet-container {
            background: #112a68 !important;
        }

        .leaflet-control-attribution {
            background: rgba(0, 0, 0, 0.6);
            color: #bbccdd;
            font-size: 8px;
            border-radius: 20px;
            padding: 0 6px;
        }

        /* Custom tooltip */
        .leaflet-tooltip.custom-tooltip {
            background: #0a1a2c;
            color: #ffefcf;
            font-weight: 500;
            font-size: 0.75rem;
            padding: 5px 12px;
            border-radius: 30px;
            border: 1px solid #ffd966;
            font-family: inherit;
            backdrop-filter: blur(4px);
        }

        /* Blink highlight animation (pulse + glow) */
        @keyframes blinkGlow {
            0% {
                stroke: #ffd966;
                stroke-width: 2;
                filter: drop-shadow(0 0 0px rgba(255, 217, 0, 0.2));
            }
            50% {
                stroke: #ffaa33;
                stroke-width: 5;
                filter: drop-shadow(0 0 6px #ffb347);
            }
            100% {
                stroke: #ffd966;
                stroke-width: 2;
                filter: drop-shadow(0 0 0px rgba(255, 217, 0, 0.2));
            }
        }

        /* Class to be added on hover for blink effect (works with leaflet paths) */
        .blink-highlight {
            animation: blinkGlow 0.6s ease-in-out 2 !important;
            transition: stroke 0.1s, stroke-width 0.1s;
        }

        /* subtle card footer */
        .card-footer {
            padding: 0.8rem 1.5rem;
            text-align: center;
            font-size: 0.7rem;
            color: #8a9fc0;
            background: #07162ab0;
            border-top: 1px solid #253c58;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        @media (max-width: 700px) {
            body { padding: 1rem; }
            .tab-btn { padding: 0.4rem 1.2rem; font-size: 0.8rem; }
            #worldMap { height: 320px; }  /* responsive adjustment */
        }

#worldMap {
  width: 100%;
  height: 500px;
}

.leaflet-control-attribution {
    display: none !important;
}
