.flex-modifier.user-message {
    color: rgb(0,0,0);
    padding: 5px;
    padding-right: 20px;
    text-align: right;
    white-space: pre-line; /* This turns \n into a new line */
    user-select: text;
    -webkit-user-select: text; 
    -moz-user-select: text;
    -ms-user-select: text;
    cursor: pointer;
}
.flex-modifier.ai-message {
    background-color: rgb(240, 240, 240);
    color: rgb(0, 0, 0);
    white-space: pre-line; /* This turns \n into a new line */
    user-select: text;
    -webkit-user-select: text; 
    -moz-user-select: text;
    -ms-user-select: text;
    cursor: pointer;
}


.omni-main-panel .x-panel-header {
    background: linear-gradient(135deg, #0258b8, #026ade);
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700; 
    text-align: center !important; 
    text-transform: uppercase; 
    border-bottom: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 0px 0px 0 0; 
}

.omni-panel-field {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.omni-search-button {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .omni-search-button:hover {
    background-color: #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .omni-search-button:active {
    background-color: #d0d0d0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .omni-search-box {
    width: 100%;
    font-size: 20px;
    border: none;
    outline: none;
  }
  
  .omni-search-box::placeholder {
    color: #aaa;
  }
  
  .omni-search-box:focus {
    box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.3);
  }

  .white-close-btn .fas {
    color: white !important;
}