.gift-container {
    position: relative;
    display: inline-block;
  }
  
  .gift-icon {
    cursor: pointer;
    margin-left: 4px;
  }
  
  .gift-popup {
    position: absolute;
    top: 120%;
    left: 0;
    background: #f5f5f5;
    color: #000;
    padding: 5px;
    border: 1px solid #ccc;
    z-index: 99;
    border-radius: 4px;
  }
  
  .gift-input {
    width: 50px;
    margin-right: 5px;
  }
  
  .gift-done-btn {
    background-color: green;
    color: white;
    border: none;
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
  }
  
