/* /Pages/GooglePage.razor.rz.scp.css */
.renderer-canvas[b-b4kfleoyvi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% of viewport width */
    height: 100%; /* Set height to 100% of viewport height */
    object-fit: cover; /* Maintains aspect ratio without distortion */
}

.map-canvas[b-b4kfleoyvi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% of viewport width */
    height: 100%; /* Set height to 100% of viewport height */
    object-fit: cover; /* Maintains aspect ratio without distortion */
}

/* Button styling */
.swap-button[b-b4kfleoyvi] {
    position: absolute; /* Position relative to the viewport */
    top: 10px; /* Adjust to your preferred spacing */
    left: 10px; /* Adjust to your preferred spacing */
    z-index: 10; /* Ensure it appears above the canvas */
    padding: 10px 20px; /* Add some padding for better appearance */
    font-size: 16px; /* Adjust font size */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
}

.rounded-box[b-b4kfleoyvi] {
    position: absolute; /* Position relative to the viewport */
    top: 50px; /* Adjust to your preferred spacing */
    left: 50px; /* Adjust to your preferred spacing */
    z-index: 10; /* Ensure it appears above the canvas */

    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    width: 300px;
    text-align: center;
    background-color: #f9f9f9;
    display: none; /* Initially hidden */
}

.debug-box[b-b4kfleoyvi] {
    position: absolute;
    bottom: 150px;
    left: 20px;
    width: 300px;
    max-height: 150px;
    overflow-y: auto;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column; /* Normal content flow (top-to-bottom) */
}

.lock-icon[b-b4kfleoyvi] {
    width:15px;
    height:15px;
}

.lock-button[b-b4kfleoyvi] {
    position: fixed; /* Keeps the button in place even when scrolling */
    top: 10px; /* Distance from the top */
    right: 60px; /* Distance from the right */
    width: 40px; /* Square shape */
    height: 40px; /* Square shape */
  
    color: white; /* Text color */
    border: none;
    border-radius: 10px; /* Optional: rounded corners */
    font-size: 24px; /* Increase font size */
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Gives a shadow effect */
    z-index: 2000; /* Ensures it stays in front of other elements */
}

    .lock-button:hover[b-b4kfleoyvi] {
        background-color: #0056b3; /* Darker blue on hover */
    }

/*Animate fade In*/
.fade[b-b4kfleoyvi] {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}


/*Hide the current element*/
.hidden[b-b4kfleoyvi] {
    opacity:0;
    pointer-events: none;
}
/* /Pages/LeafletPage.razor.rz.scp.css */
.renderer-canvas[b-8zmkycsotm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% of viewport width */
    height: 100%; /* Set height to 100% of viewport height */
    object-fit: cover; /* Maintains aspect ratio without distortion */
}

.map-canvas[b-8zmkycsotm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% of viewport width */
    height: 100%; /* Set height to 100% of viewport height */
    object-fit: cover; /* Maintains aspect ratio without distortion */
}

/* Button styling */
.swap-button[b-8zmkycsotm] {
    position: absolute; /* Position relative to the viewport */
    top: 10px; /* Adjust to your preferred spacing */
    left: 10px; /* Adjust to your preferred spacing */
    z-index: 10; /* Ensure it appears above the canvas */
    padding: 10px 20px; /* Add some padding for better appearance */
    font-size: 16px; /* Adjust font size */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
}

.rounded-box[b-8zmkycsotm] {
    position: absolute; /* Position relative to the viewport */
    top: 50px; /* Adjust to your preferred spacing */
    left: 50px; /* Adjust to your preferred spacing */
    z-index: 10; /* Ensure it appears above the canvas */

    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    width: 300px;
    text-align: center;
    background-color: #f9f9f9;
    display: none; /* Initially hidden */
}

.debug-box[b-8zmkycsotm] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 150px;
    overflow-y: auto;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column; /* Normal content flow (top-to-bottom) */
}

.lock-icon[b-8zmkycsotm] {
    width:15px;
    height:15px;
}

.lock-button[b-8zmkycsotm] {
    position: fixed; /* Keeps the button in place even when scrolling */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    width: 40px; /* Square shape */
    height: 40px; /* Square shape */
  
    color: white; /* Text color */
    border: none;
    border-radius: 10px; /* Optional: rounded corners */
    font-size: 24px; /* Increase font size */
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Gives a shadow effect */
    z-index: 2000; /* Ensures it stays in front of other elements */
}

    .lock-button:hover[b-8zmkycsotm] {
        background-color: #0056b3; /* Darker blue on hover */
    }

/*Animate fade In*/
.fade[b-8zmkycsotm] {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}


/*Hide the current element*/
.hidden[b-8zmkycsotm] {
    opacity:0;
    pointer-events: none;
}

/* /Pages/MapboxPage.razor.rz.scp.css */
.renderer-canvas[b-62h6hz71pb] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% of viewport width */
    height: 100%; /* Set height to 100% of viewport height */
    object-fit: cover; /* Maintains aspect ratio without distortion */
}

.map-canvas[b-62h6hz71pb] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% of viewport width */
    height: 100%; /* Set height to 100% of viewport height */
    object-fit: cover; /* Maintains aspect ratio without distortion */
}

/* Button styling */
.swap-button[b-62h6hz71pb] {
    position: absolute; /* Position relative to the viewport */
    top: 10px; /* Adjust to your preferred spacing */
    left: 10px; /* Adjust to your preferred spacing */
    z-index: 10; /* Ensure it appears above the canvas */
    padding: 10px 20px; /* Add some padding for better appearance */
    font-size: 16px; /* Adjust font size */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
}

.rounded-box[b-62h6hz71pb] {
    position: absolute; /* Position relative to the viewport */
    top: 50px; /* Adjust to your preferred spacing */
    left: 50px; /* Adjust to your preferred spacing */
    z-index: 10; /* Ensure it appears above the canvas */

    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    width: 300px;
    text-align: center;
    background-color: #f9f9f9;
    display: none; /* Initially hidden */
}

.debug-box[b-62h6hz71pb] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 150px;
    overflow-y: auto;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column; /* Normal content flow (top-to-bottom) */
}

.lock-icon[b-62h6hz71pb] {
    width:15px;
    height:15px;
}

.lock-button[b-62h6hz71pb] {
    position: fixed; /* Keeps the button in place even when scrolling */
    top: 10px; /* Distance from the top */
    left: 10px; /* Distance from the right */
    width: 40px; /* Square shape */
    height: 40px; /* Square shape */
  
    color: white; /* Text color */
    border: none;
    border-radius: 10px; /* Optional: rounded corners */
    font-size: 24px; /* Increase font size */
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Gives a shadow effect */
    z-index: 2000; /* Ensures it stays in front of other elements */
}

    .lock-button:hover[b-62h6hz71pb] {
        background-color: #0056b3; /* Darker blue on hover */
    }

/*Animate fade In*/
.fade[b-62h6hz71pb] {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}


/*Hide the current element*/
.hidden[b-62h6hz71pb] {
    opacity:0;
    pointer-events: none;
}

