/* ------------  */
#b2NavContainer {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
}

#b2FloatingButton {
    position: fixed;
    left:0;
    top:10%;
    width: 50px;
    height: 50px;
       
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
   
    pointer-events: auto;
    user-select: none;
    touch-action: none;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

#b2FloatingButton:hover {
    background-color: var(--primary-color);
}

#b2FloatingButton:active {
    transform: scale(0.95);
}

#b2FloatingButton span {
  
    font-weight: bold;
    font-size:9px;
}

#b2MenuItems {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,200,255,0.5);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.7);
    pointer-events: auto;
    transition: opacity 0.3s ease-out;
}

.b2MenuItem {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.b2MenuItem:hover {
    background-color: rgba(200,200,200,0.9);
    transform: scale(1.1);
}

.b2MenuItem:active {
    transform: scale(0.95);
}

.b2MenuItem svg {
    width: 24px;
    height: 24px;
    fill: var(--text);
}

.b2 h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.lead {
  font-size: 1rem;
  color: var(--dark-theme_color);
}

