

  
  .trigger {
    padding: 5px 10px;
    border-radius: 4px;
  }
  
  .pop-container {
    position: absolute;
    display: inline-block;
 
  }
  
  .pop-content {
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -65px;
    margin-bottom: 10px;
    z-index: 100;
  
    color: gray;
    width: 130px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s;
  }
  
  span.warn {
    color: yellow;
    display: inline-block;
  }
  
  span.warn::after {
    content: "\E62C";
    position: absolute;
  }
  
  .hidden {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
  }
  .text-content::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
  }
  
  .text-content {
    padding: 4px 0px 12px;
    text-align: left;
  }
  
  .actions {
    text-align: right;
  }
  .actions button {
    padding: 3px 7px;
    margin-left: 8px;
    border-radius: 4px;
    background-color: #fff;
    background-image: none;
    display: inline-block;
    color: rgba(0, 0, 0, 0.65);
    outline: 0px;
    border: 1px solid #d9d9d9;
    transition: all 0.3s;
  }
  
  .actions button:hover {
    color: #fff;
    background-color: #1890ff;
    border-color: #1890ff;
  }
  