.ticket-tooltip {
    position: absolute;
    display: none;
    //background-color: #333;
    //color: #fff;
    padding: 5px;
    border-radius: 4px;
    z-index: 1000;
    white-space: nowrap;
    font-size: 14px;
    width: 450px;
  }
  
  .ticket-hover-cell {
    cursor: pointer;
  }
  
  .ticket-editor-toolbar {
    //border: 1px solid #ccc;
    padding: 1px;
    //background-color: #f9f9f9;
    height: 31px;
  }
  .ticket-editor-toolbar button {
    margin-right: 5px;
    padding: 5px 10px;
    cursor: pointer;
  }
  .ticket-editor-content {
    border: 1px solid #D8DCDE !important;
    padding: 10px !important;
    //min-height: 300px;
    //margin-top: 10px;
    width: 100% !important;
    //background-color: #fff;
  }
  .ticket-hidden-input {
    display: none;
  }
  .ticket-preview-section {
    border: 1px solid #ccc;
    padding: 1px;
    margin-top: -1px;
    background-color: #f9f9f9;
    overflow-y: auto;
  }
  
  .ticket-preview-section h2 {
    margin-bottom: 10px;
  }
  .ticket-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  
  }
  .ticket-preview-item {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ddd;
    padding: 2px;
    background-color: #fff;
  }
  .ticket-preview-item a {
    display: block;
    font-size: 9px;
  }
  .ticket-delete-button {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    //padding: 5px;
  }
  .ticket-submit-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }