        body {
            font-family: 'Poppins', sans-serif;
        }

        #map {
            height: 100vh;
            width: 100%;
        }

        /* Fullscreen overlay styles */
        .fullscreen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: none;
            display: flex;
            flex-direction: column;
        }

        .header {
            background: #e74c3c;
            border-bottom: 2px solid #c0392b;
            padding: 10px 20px;
            font-size: 12px;
            font-weight: bold;
            color: #fff;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            height: 15px;
        }

        .header span {
            flex-grow: 1;
            text-align: center;
        }

        .header .close-icon {
            font-size: 15px;
            color: #fff;
            cursor: pointer;
            margin-left: 12px;
        }

        .popup-title {
            padding: 10px 20px;
            font-size: 15px;
            background: #FFF;
            color: #000;
            margin: 0;
            font-weight: bold;
            text-align: center;
            height: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .iframe-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        .fullscreen-overlay iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Blinking animation for the user location icon */
        @keyframes blink {
            0% {
                opacity: 1; /* Fully visible */
            }
            50% {
                opacity: 0; /* Invisible (blinks) */
            }
            100% {
                opacity: 1; /* Back to visible */
            }
        }

        /* Styling for the user's location marker (crosshair) */
        .user-location-icon {
            font-size: 24px;
            color: #e74c3c; /* Red crosshairs */
            transform: translate(-50%, -50%);
            animation: blink 1.5s infinite; /* Blinking effect */
        }

        .leaflet-popup {
            
            min-height: 20px;
            font-size: 14px;
            font-weight: bold;
            background-color: rgba(255, 255, 255, 0.5);

        
        }

        .leaflet-popup-content {
            padding: 5px;
            margin: 0;
            overflow: hidden;
            background: transparent;
        }

        .leaflet-popup-content-wrapper {
            background: transparent;
            border: none;


        }

        .leaflet-popup-tip {
            display: none;
            background: transparent;

        }

        .leaflet-div-icon {
            background: none;
            border: none;
            text-align: center;
        }

        .leaflet-div-icon i {
            font-size: 16px;
            color: white;
            line-height: 24px;
            width: 24px;
            height: 24px;
            background-color: #3498db; /* Default color */
            border-radius: 50%;
            display: inline-block;
            padding: 0px;
            box-sizing: border-box;
        }

        .leaflet-div-icon-2 {
            background: none;
            border: none;
            text-align: left;
            padding-top: 5px;
        }

        .leaflet-div-icon-2 i {
            font-size: 16px;
            color: white;
            line-height: 24px;
            width: 24px;
            height: 24px;
            background-color: #3498db; /* Default color */
            border-radius: 50%;
            display: inline-block;
            padding: 0px;
            box-sizing: border-box;
        }

        .red-icon i {
            background-color: #e74c3c;
        }

        .blue-icon i {
            background-color: #2980b9;
        }

        .green-icon i {
            background-color: #27ae60;
        }

        .orange-icon i {
            background-color: #f39c12;
        }

        .purple-icon i {
            background-color: #9C27B0;
        }
        .pink-icon i {
            background-color: #ff5e9f;
        }

        /* Remove the cluster boundary style */
        .cluster-boundary {
            display: none; /* Do not show additional boundaries */
        }

        /* Information icon button */
        .info-btn {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 10px;
            font-size: 20px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 1000;
        }

            /* Default styling for the info window */
            .info-window {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
                display: none;
                z-index: 9999;
                max-width: 100%; /* Full width by default */
                text-align: left;
                overflow-y: auto;
            }

            /* For phones (max-width: 767px), make the window full screen */
           @media (max-width: 767px) {
            .info-window {
                top: 50%; /* Keep it vertically centered */
                left: 50%; /* Keep it horizontally centered */
                transform: translate(-50%, -50%); /* Correct for centering */
                width: 80vw; /* 90% of the viewport width */
                height: 80vh; /* 90% of the viewport height */
                padding: 20px; /* Padding to ensure content doesn't touch the edges */
                border-radius: 10px; /* Keep rounded corners */
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Keep the box shadow */
                display: none; /* Ensure it’s initially hidden */
                z-index: 9999;
                max-width: 80%; /* Full width by default */
                text-align: left;
                overflow-y: auto;
            }
            }

        .info-window h3 {
            margin-top: 0;
        }

        .close-info-window {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 18px;
            cursor: pointer;
        }

       /* Camera Icon Styles */
        .camera-icons {
            display: flex;
            justify-content: flex-start;  /* Align items to the left */
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            
        }

        .camera-icons .icon {
            display: flex;
            align-items: center;  /* Keep icons vertically centered */
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
        }

        .camera-icons .icon i {
            font-size: 20px;
            color: white;
            line-height: 40px;
        }

        .camera-icons li .icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            display: flex;
            justify-content: flex-start;
            align-items: left;  /* Center the icon within the circle */
            border-radius: 50%;
        }

        .container-menu {
      display: flex;          /* Use flexbox for layout */
      width: 100%;            /* Ensure container takes up full width of the parent */
    }
    .container-menu-left {
      width: 40px;            /* Fixed width for left and right divs */
      background-color: #FFF;
      padding-right: 0;
    }
    .container-menu-right {
      width: 40px;            /* Fixed width for left and right divs */
      background-color: #FFF; 
      padding-left: 0;
    }

    .container-menu-center {
      flex-grow: 1;           /* Center div takes up remaining space */
    }
    .arrow-icon-button {
      font-size: 15px;
      cursor: pointer;
      display: inline-block;
      padding: 10px;
      transition: all 0.3s ease;
    }

    .arrow-icon-button:hover {
      color: #007bff;
      transform: scale(1.1);
    }
/* tekur út draw tool circle */
    .leaflet-draw-toolbar .leaflet-draw-draw-circle {
    display: none !important;
}
