#map {
    width: 100%;
    height: 500px;
    border: 2px solid #ccc;
    border-radius: 8px;
 }


.tree-details-container {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.tree-details-container h2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.tree-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tree-info img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tree-info ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

.tree-info li {
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.tree-info li:last-child {
    border-bottom: none;
}

.tree-info strong {
    color: #555;
}


.custom-cluster {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-cluster span {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    color: black;
  
    left: 50%;
    transform: translateX(-50%);
}
