/* Add this CSS to your stylesheet */
.floating-menu {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
  }
  
  .tool-items {
    position: absolute;
    bottom: 64px;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
  }
  
  .tool-items.open {
    opacity: 1;
    transform: scale(1);
  }
  
  .tool-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    text-decoration: none;
  }
  
  .tool-label {
    position: absolute;
    right: 56px;
    background-color: #1f2937;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
  }
  
  .tool-item:hover .tool-label {
    opacity: 1;
  }
  
  .tool-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #5b21b6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .tool-button:hover {
    background-color: #4338ca;
    transform: translateY(-4px);
  }
  
  .main-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #5b21b6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .main-button:hover {
    background-color: #4338ca;
  }
  
  .main-button.open {
    transform: rotate(45deg);
  }


  @media (max-width: 768px) {
    .main-button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #5b21b6;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .tool-button {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: #5b21b6;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }
  }