/* Global Floating Navbar - Black Button */
.global-navbar {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-menu-trigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    cursor: pointer;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.global-menu-trigger:hover {
    transform: scale(1.1);
    background-color: #222222;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hide on very small screens if requested, otherwise keep as mobile FAB */
@media (max-width: 767px) {
    .global-navbar {
        bottom: 25px;
        right: 25px;
        display: none;
    }
    .global-menu-trigger {
        width: 50px;
        height: 50px;
    }
    .hamburger-line {
        width: 20px;
    }
}
