/*Floating menu*/
/* Base styles */
.circle-menu {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #fbc40c;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    cursor: pointer;
    z-index: 9999;
    user-select: none;
  }
  
  /* Hover effect */
  .circle-menu:hover {
    width: 200px;
    height: 200px;
    background-color: #fbc40c;
  }
  
  .button-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #24346a;
    z-index: 2;
    transition: opacity 0.3s ease;
  }
  
  .circle-menu:hover .button-label {
    opacity: 0;
  }
  
  .menu-items {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px;
    gap:10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .circle-menu:hover .menu-items {
    opacity: 1;
    pointer-events: auto;
  }
  
  .menu-items li {
    margin: 2px 0;
    color: #24346a;
    font-size: .75em;
    font-weight: bold;
    transition: transform 0.2s ease;
  }
  
  .menu-items li:hover {
    transform: scale(1.1);
  }
  
  /* Position presets (customizable) */
  .position-top-right    { top: 150px; right: 20px; }
  .position-top-left     { top: 20px; left: 20px; }
  .position-bottom-right { bottom: 20px; right: 20px; }
  .position-bottom-left  { bottom: 20px; left: 20px; }
  .position-center       { top: 50%; left: 50%; transform: translate(-50%, -50%); }
  