.floating-menu-vertical {
    position: fixed !important;
    right: 30px;
    bottom: 30px;
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-menu-vertical a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #E0F0FE;
    color: #003B7C;
    text-decoration: none;
    border-radius: 12px 0;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(0, 59, 124, 0.1);
}

.floating-menu-vertical a:hover,
.floating-menu-vertical a:focus {
    color: #CD1113;
    outline: none;
}

.floating-menu-vertical a:focus-visible {
    box-shadow: 0 0 0 3px rgba(205, 17, 19, 0.4);
}

@media (max-width: 768px) {
    .floating-menu-vertical {
        right: 10px !important;
        bottom: 10px !important;
    }

    .floating-menu-vertical a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}
