.logo{
    position: absolute;
    bottom: 10px;
    right: 10px;
    
    & h1{
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 600;
    }
}

 /* container for both floating icons */
.floating-icon {
  position: fixed;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);          /* or any theme color */
  /* border: 1px solid #ccc; */
  display: flex; 
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px var(--accent-bg);
  cursor: pointer;
  z-index: 1000;              /* stay above editor */
  font-size: 18px;            /* if using text/emoji */
  transition: background 0.2s;
}

.floating-icon:hover {
  background: var(--accent-bg);
}



/* place one top-left */
#library-icon {
  left: 10px;
}

/* place one top-right */
#actions-icon {
  right: 10px;
}