body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 70%);
}
#map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#sidebar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    padding: 10px;
    background-color: rgba(248, 249, 250, 0.8);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    margin-right: 10px;
    border-radius: 5px;
}
.pinItem {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;

}
.pinItem:hover {
    background-color: rgba(233, 236, 239, 0.8);
}
.colorBox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s;
}
.colorBox.selected {
    border: 2px solid #000;
    transform: scale(1.2);
}
.pinItem label {
    flex-grow: 1;
    cursor: pointer;
}
.navbar {
    z-index: 1000;
    position: relative;
    background-image: linear-gradient(white, transparent) !important;
    /*backdrop-filter: blur(10px);*/
    padding: 20px;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
    z-index: 1000;
}

.floating-button:hover {
    background-color: #0056b3;
}

.floating-menu {
    position: fixed;
    bottom: 90px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, background-color 0.3s;
    font-size: 20px;
}

.menu-item:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}






