/* Styles for the create option button in chosen dropdown */
.chosen-container .no-results {
    padding: 8px !important;
}
  
.chosen-container .no-results .create-option-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 8px 0;
    margin-top: 8px;
    cursor: pointer;
    color: #4472c4;
    font-weight: 500;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
}
    
  .chosen-container .no-results .create-option-button:before {
    content: "+";
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
  }
  
  /* Optional: Add a subtle separator */
  .chosen-container .no-results .create-option-button {
    border-top: 0.5px solid rgba(0,0,0,0.08);
  }