    body {
        margin: 0;
        padding: 0;
    }

    #map {
        position: fixed;
		left: 0;
		width: 100%;
        height: 100%;
	    z-index: 9;
    }

            #map i {
            color: #464646;
            cursor: pointer;
        }

    .left-tools-wrap, .right-tools-wrap {
        top: 10px;
        position: absolute;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .left-tools-wrap {
        left: 10px;
    }

    .right-tools-wrap {
        right: 10px;
    }

        .left-tools-wrap button,
        .right-tools-wrap button {
            background: #FAFAFA;
            cursor: pointer;
            /*    width: 35px;
                        height: 35px; */
            width: 40px;
            height: 40px;
            border-radius: 5px;
            box-shadow: 0px 0 5px 2px rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            padding: 0;
            border: none;
            /* border: 3px solid transparent; */
        }

        .left-tools-wrap button img, .right-tools-wrap button img{
            width: 100%;
            height: 100%;
        }

            .left-tools-wrap button:not(#pdf-btn):hover,
            .right-tools-wrap button:not(#pdf-btn):hover {
                background: #E6EEFE;
                scale: 1.1;
                border: 3px solid #2E82C0;
                box-shadow: 0px 0 5px 2px rgba(0, 0, 0, 0.3);
            }

            .left-tools-wrap button i,
            .right-tools-wrap button i {
                font-size: 20px;
            }

            .left-tools-wrap button:not(#pdf-btn):hover i,
            .left-tools-wrap button:not(#pdf-btn).active,
            .right-tools-wrap button:not(#pdf-btn):hover i,
            .right-tools-wrap button:not(#pdf-btn).active {
                background: #E6EEFE;
                color: #2E82C0 !important;
                border: 3px solid #2E82C0;
                scale: 1.1;
                box-shadow: 0px 0 5px 2px rgba(0, 0, 0, 0.3);
            }

                .left-tools-wrap button:not(#pdf-btn).active i,
                .right-tools-wrap button:not(#pdf-btn).active i {
                    color: #2E82C0 !important;
                }

    .side-panel {
        position: absolute;
        top: 0;
        left: -450px;
        width: 400px;
        height: calc(100% - 20px);
        top: 10px;
        background: #FAFAFA;
        transition: left 0.6s ease;
        z-index: 999;
        border-radius: 5px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        cursor: auto;
    }

        .side-panel.active {
            left: 60px;
        }

        .side-panel .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 10px;
            border-bottom: 1px solid #ccc;
        }

            .side-panel .panel-header .title {
                color: #464646;
                margin: 3px 0;
    font-size: 18px;
            }

            .side-panel .panel-header i {
                font-size: 18px;
                color: #464646;
            }

        .side-panel .panel-content {
            padding: 10px;
            overflow-y: auto;
            height: calc(100% - 48px);
        }

    .search-box {
        display: flex;
        align-items: center;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
        height: 35px;
        margin: 10px 0;
    }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0 10px;
            font-size: 12px;
            border: none !important;
        }

        .search-box button {
            padding: 0 10px;
            color: #464646;
                border: none;
    background: none;
        }

    #tree-layers ul {
        list-style: none;
        padding-left: 20px;
        color: rgba(0, 0, 0, 0.7);
        font-size: 13px;
    }

    #tree-layers > ul {
        padding-left: 0px;
    }

    .node {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 4px;
    }

        .node img {
            width: 22px;
            height: 22px;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            border-radius: 6px;
            padding: 1px;
            border: none;
        }

            .node img:not(.folder-icon):hover {
                background: #DAEBF9 !important
            }

        .node .zom-layer-icon {
            margin-left: auto;
        }

    .layer-color {
        width: 18px;
        height: 18px;
        border-radius: 6px;
        display: inline-block;
    }

    .layer-checkbox {
        margin-right: 5px;
    }

    li.active > .node {
        background-color: #e6f0ff;
    }

    li.collapsed > ul {
        display: none;
    }

    #tree-layers ul {
        list-style: none;
        margin: 0;
        padding-left: 20px;
        position: relative;
    }

        #tree-layers ul::before {
            content: '';
            position: absolute;
            top: 0;
            left: 12px;
            width: 1px;
            height: 100%;
            background: #ccc;
        }

    #tree-layers li {
        position: relative;
        padding-left: 20px;
        overflow: auto;
        margin: 5px 0;
    }

        #tree-layers li::before {
            content: '';
            position: absolute;
            top: 18px;
            left: 0;
            width: 15px;
            height: 1px;
            background: #ccc;
        }

    #tree-layers > ul > li::before,
    #tree-layers > ul::before {
        content: none;
    }

    #tree-layers li.collapsed > ul {
        display: none;
    }

    #tree-layers .node {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        padding: 5px 5px 5px 0;
    }

    #tree-layers .layer-label {
        font-weight: 500;
        font-size: 13px;
    }


    #tree-layers > ul {
        padding-left: 0;
    }

        #tree-layers > ul > li {
            border-radius: 4px;
            padding: 0;
        }

    #tree-layers input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        border: 2px solid #666;
        border-radius: 4px;
        position: relative;
        cursor: pointer;
        background-color: white;
        vertical-align: middle;
        margin-right: 5px;
        transition: all 0.2s ease;
    }

        #tree-layers input[type="checkbox"].checked-with-svg {
            background-color: #2E82C0;
            border-color: #2E82C0;
            background-image: url('../images/check-mark-icon.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 12px 12px;
        }

        #tree-layers input[type="checkbox"]:hover {
            border-color: #2E82C0;
        }

    #tree-layers li.active {
        background: #E6F0FF;
        border-radius: 6px;
    }

    input[type=checkbox] {
        width: 15px !important;
        height: 15px !important;
        padding: 0 !important
    }

    .basemaps-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 5px;
    }

        .basemaps-wrapper .layer-wrapper {
            width: calc(50% - 8px);
        }

            .basemaps-wrapper .layer-wrapper:hover span {
                color: #2E82C0;
            }

            .basemaps-wrapper .layer-wrapper:hover .layer-container {
                border-color: #2E82C0;
                background: #E6EEFE;
            }

    .layer-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        cursor: pointer;
        border: 1px solid #ccc;
        border-radius: 8px;
    }

        .layer-container img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
        }

        .layer-container span {
            text-align: center;
            margin: 0px 0 10px;
            font-weight: 600;
            font-size: 12px;
            color: #464646;
        }

        .layer-container:hover,
        .layer-container.active {
            transform: scale(1.02);
        }

        .layer-container.active {
            border-color: #2E82C0;
            background: #E6EEFE;
        }

            .layer-container.active span {
                color: #2E82C0;
            }

    .leaflet-control-minimap {
        box-shadow: 0px 0 5px 2px rgba(0, 0, 0, 0.2) !important;
        border-color: #FAFAFA;
        border-radius: 5px;
        border-radius: 50%;
    }

    .leaflet-control-minimap,
    .leaflet-control-minimap-toggle-display {
        min-width: 40px !important;
        min-height: 40px !important;
    }

        .leaflet-control-minimap a {
            background-image: none;
        }

    .leaflet-control-minimap-toggle-display {
        border-radius: 50% !important;
    }

        .leaflet-control-minimap-toggle-display img {
        /* border-radius: 50% !important; */
        height: 100%;
        width: 100%;
    }

        .leaflet-control-minimap-toggle-display,
        .leaflet-control-minimap-toggle-display.minimized-bottomright:hover {
            background: #E6EEFE !important;
        }

            .leaflet-control-minimap-toggle-display i,
            .leaflet-control-minimap-toggle-display:hover i,
            .leaflet-control-minimap-toggle-display.minimized-bottomright:hover i {
                color: #2E82C0 !important;
            }

            .leaflet-control-minimap-toggle-display.minimized-bottomright {
                background: #FAFAFA !important;
            }

            .leaflet-control-minimap-toggle-display i {
                font-size: 23px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .leaflet-control-minimap-toggle-display.minimized-bottomright i {
                color: #464646 !important;
            }

    .leaflet-draw,
    .leaflet-draw-toolbar,
    .leaflet-control-layers,
    .leaflet-bottom.leaflet-left,
    .leaflet-control-attribution.leaflet-control {
        display: none !important;
    }

    #panel-globe {
        height: 190px;
    }

  #panel-globe #coord-type{
             margin-top: 5px;
    }

    .coords-inputs {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 15px;
        color: #464646;
    }


        .coords-inputs input, select#coord-type {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 6px 8px !important;
            font-size: 12px !important;
            height: 35px !important;
        }

        .coords-inputs input {
            padding-left: 25px !Important;
            box-sizing: border-box;
            margin-top: 5px !important;
        }

        .coords-inputs label {
            position: relative; 
            box-sizing: border-box;
        }

            .coords-inputs label span {
                position: absolute;
                top: 14px;
                left: 10px;
                color: #464646;
                font-size: 12px !important;
            }

    .zoom-scale-line {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 15px;
    }

        .zoom-scale-line #map-zoom {
            flex-grow: 1;
        }

        #leaflet-scale {
z-index: 99999;
    left: 10px;
    position: absolute;
    bottom: 10px;
    width: 100px;
    background: transparent;
        }

         #leaflet-scale .leaflet-control-scale-line {
            width: 100% !important;
            text-align: center;
            padding: 2px 0;
            border-bottom-right-radius: 4px;
            border-bottom-left-radius: 4px;
            border-color: #2E82C0;
            color: #2E82C0;
            font-weight: normal;
            background: transparent;
        }

    .minimap-open {
        border-radius: 4px;
    }

    select {
  appearance: none;           /* Removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  
  background-color: white;
  border: 1px solid #ccc;

  background-image: url('data:image/svg+xml;utf8,<svg fill="%23636363" height="34" viewBox="0 0 24 24" width="34" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 6px center; /* <-- Position of arrow */
  background-size: 18px;
}

input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}