.buttons-container {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .tooltip-wrapper {
    position: relative;
    display: inline-flex;
  }
  
  /* Tooltip base styles */
  .tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    color: white;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    pointer-events: none;
  }
  
  /* Tooltip variants */
  .tooltip-add,  .tooltip-view, .tooltip-details  {
    background-color: #2563eb;
  }
  
  /* Tooltip arrow */
  .tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: inherit;
    width: 10px;
    height: 6px;
  }
  
  /* Show tooltip on hover */
  .tooltip-wrapper:hover .tooltip {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  /* Additional animations for tooltip */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
      box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
  }
  
  /* Apply animations to specific tooltips */
  .tooltip-wrapper:hover .tooltip-add {
    animation: pulse 1.5s infinite;
  }
  
  .tooltip-view {
    transition-delay: 0.05s;
  }
  
  .tooltip-details {
    transition-delay: 0.1s;
  }
  
  /* Touch device support */
  @media (hover: none) {
    .tooltip-wrapper:active .tooltip {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      visibility: visible;
    }
  }