/**ricopiare il css del bot con le mediaquery per sdoppiarli dal css normale*/
/**messo dentro indexfrontcontroller*/


/***************************************** CSS della parte chatbot *************************************************************************/
#static-chatbot-landing .gift-icon-top {
    width: 40px; /* Adjust as needed */
    height: 40px; /* Adjust as needed */
    position: absolute;
    top: 25px;
    left: 25px;
    margin-top: 0em !important;
  }
  
  #static-chatbot-landing .gift-icon-bottom {
    width: 40px; /* Adjust as needed */
    height: 40px; /* Adjust as needed */
    position: absolute;
    bottom: -20px;
    left: 80px;
  }
  

  
  
  #chatbot .pactions a {
    background: #7cd324 !important;
    color: #fff !important;
    border-radius: 40px;
    padding: 10px 20px;
    display: inline-block;
    margin: 8px;
    border: 2px solid #007BFF;
    border-radius: 20px;
    min-width: calc(50% - 16px);
  }
  #chatbot .coregImage {/*max-width:350px!important;*/ max-width:200px; }
  #chatbot .coregTitle{margin: 12px 0px;}
  
  #chatbot .qCoreg {
    border-radius: 20px;
    padding: 20px;
    margin: 70px 0;
    position: relative;
  }
  
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
  
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  #chatbot .fadeInScale {
    animation: fadeInScale 0.5s ease-out;
  }
  
  
  #chatbot .message-time {
    font-size: 12px;
    color: #888;
    position: absolute;
    top: 90px;
    left: -50px;
  }
  
  #chatbot .message-time-static {
    font-size: 12px;
    color: #888;
    position: absolute;
    top: 60px;
    left: -43px;
  }
  
  #chatbot .balloon-container:hover .back-button {
    display: block;
  }
  
  #chatbot .back-button button {
    background: none;
    border: none;
    color: black;
    font-size: 14px;
    cursor: pointer;
  }
  
  #chatbot .back-button button:hover {
    text-decoration: underline;
  }
  
  #chatbot .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  
  #chatbot .loader {
    display: flex;
    justify-content: space-between;
    width: 60px;
  }
  
  #chatbot .loader div {
    width: 12px;
    height: 12px;
    background-color: #FF5C35;
    border-radius: 50%;
    animation: grow-shrink 1.5s infinite;
  }
  
  #chatbot .loader div:nth-child(1) {
    animation-delay: 0s;
  }
  
  #chatbot .loader div:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  #chatbot .loader div:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes grow-shrink {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }
  
  #chatbot .balloon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
  }
  
  #chatbot .balloon-container-static {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -45px;
    width: 100%;
    position: relative;
  }
  
  #chatbot .balloon {
    padding: 20px;
    margin-bottom: -80px;
    word-wrap: break-word;
    position: relative;
    font-size: 16px;
  }
  
  #chatbot .balloon.question {
    align-self: center;
  }
  
  #chatbot .balloon.question-static {
    align-self: center;
    margin-top: 6rem;
  }
  
  #chatbot .balloon.response-balloon {
    align-self: flex-end;
    background-color: #7cd324;
    color: white;
    margin-left: auto;
    border-radius: 20px 20px 0 20px;
    max-width: 60%;
    text-align: center;
    margin-top: -50px;
  }
  
  #chatbot .choose-option-label {
    font-size: 12px;
    color: #7b7b7b;
    margin-top: 15px;
    text-align: left;
    width: 100%;
  }
  
  #chatbot .coregQuestion {
    position: relative;
    background: #ffffff;
    border-radius: 20px 20px 20px 0;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  
  #chatbot .coregQuestion-static {
    position: relative;
    border-radius: 20px 20px 20px 0;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  #chatbot .coregQuestion2Balloon {
    position: relative;
    background: #ffffff;
    border-radius: 20px 20px 20px 20px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Stile per i pallini di caricamento */
  #chatbot .loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: auto;
    max-width: 100px;
    padding: 5px 10px;
    background-color: #f4f4f4;
    border-radius: 20px;
  }
  
  #chatbot .loading-dots div {
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 3px;
    animation: loading-dots 1.2s infinite ease-in-out both;
  }
  
  #chatbot .loading-dots div:nth-child(1) {
    animation-delay: -0.32s;
  }
  
  #chatbot .loading-dots div:nth-child(2) {
    animation-delay: -0.16s;
  }
  
  @keyframes loading-dots {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }
  
  #chatbot .avatar-icon {
    position: absolute;
    top: 33px;
    left: -50px;
    width: 40px;
    height: 45px;
    filter: brightness(1.05);
  }
  
  #chatbot .avatar-icon-static {
    position: absolute;
    top: 6px;
    left: -60px;
    width: 40px;
    height: 45px;
    filter: brightness(1.05);
  }
  
  #chatbot img.gift-icon-top-chatbot {
    max-width: 40px !important;
    width: 40px;
    height: 45px;
    margin-right: 20px;
    filter: brightness(1.05);
    top: 25px;
    margin-top: 0em !important;
  }
  
  
  .green-bar-chatbot {
    background-color: #7cd324;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 25px;
  }
  
  #chatbot {
    max-width: 800px;
    width: 100%;
    margin: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #chatbot .answered {
    display: block !important;
  }
  
  #chatbot img {margin-top:0px !important;}

  #chatbot textarea.form-control {
    background: none !important;
    color: black;
  }
  
  /***************************************fine css del chatbot**************************************************************************/
  
  
  /***************************************inizio css per la pagina statica*******************************************************************/
  
  .green-bar {
    background-color: #7cd324;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 25px;
  }
  
  img.gift-icon-top {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 25px;
    left: 25px;
    margin-top: 0em !important;
  }
  
  #static-chatbot-landing .gift-icon-bottom {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -20px;
    left: -80px;
  
  }
  
  
  .chat-container {
    padding-top: 100px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    margin: 0 auto;
  }
  
  .chat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  
  .chat-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    padding: 0 20px;
  }
  
  .chat-avatar {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
  }
  
  
  .chat-balloon {
    background-color: #fff;
    padding: 15px;
    border-radius: 40px;
    margin: 3px 0;
    text-align: left;
    max-width: calc(100% - 60px);
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
  
  }
  
  .chat-balloon:first-of-type {
    max-width: calc(100% - 40px);
  
  }
  
  .second-balloon {
    position: relative;
    top: 5px;
  }
  
  
  #static-actionButton {
    background-color: #7cd324;
    color: white;
    border: 2px solid #002EFF;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
    border-radius: 30px;
    align-self: flex-start;
    margin-top: 30px;
  }
  
  #static-actionButton:hover {
    background-color: #5f9e17;
    transform: translateY(-2px);
  }
  
  .second-balloon .gift-icon-bottom {
    bottom: 10px;
    left: -70px;
  }
  
  .second-balloon {
    position: relative;
  }
  
  .chat-balloon p {
    margin-bottom: 20px; /* Spazio verticale tra i paragrafi */
  }
  
  /*************************************************fine css per la pagina statica***************************************************************/
  
  
  
  
  /****************************************************************media query relativo alla pagina statica del bot ***********************************************/
  @media (max-width: 768px) {
    .chat-container {
      width: 80%;
    }
  
    .chat-balloon {
      margin-left: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
    }
  
    .chat-avatar {
      width: 40px;
      height: 40px;
      align-self: start;
      margin-top: -10px;
      margin-bottom: 10px;
  
    }
  
    #static-actionButton {
      margin-left: 0;
  
    }
  
    .chat-balloon:first-of-type {
      max-width: calc(100% - 0px);
    }
  
    #static-chatbot-landing .gift-icon-top {
      width: 40px;
      height: 40px;
      position: absolute;
      left: 25px;
    }
    
    #static-chatbot-landing .gift-icon-bottom {
      width: 40px;
      height: 40px;
      position: absolute;
      bottom: -20px;
  
    }
  
    
  }
  
  
  @media (max-width: 600px) {
    .chat-container {
      width: 90%;
    }
  
    .chat-balloon {
      margin-left: 0;
      padding: 0.8em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
    }
  
  
    #static-actionButton {
      margin-left: 0;
    
    }
  
    .second-balloon .gift-icon-bottom {
      display: none;
    }
  
    .chat-balloon:first-of-type {
      max-width: calc(100% - 0px);
    }
  
    
    #static-chatbot-landing .gift-icon-top {
      width: 40px;
      height: 40px;
      position: absolute;
      /*top: 4rem;*/
      left: 25px;
    }
    
    #static-chatbot-landing .gift-icon-bottom {
      display: none;
  
    }
  
  }
  
  @media (max-width: 598px) {
    .chat-container {
      width: 90%;
    }
  
    .chat-balloon {
      margin-left: 0;
      padding: 0.8em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
    }
  
  
    #static-actionButton {
      margin-left: 0;
    
    }
  
    .second-balloon .gift-icon-bottom {
      display: none;
    }
  
    .chat-balloon:first-of-type {
      max-width: calc(100% - 0px);
    }
    
    #static-chatbot-landing .gift-icon-top {
      width: 40px;
      height: 40px;
      position: absolute;
      left: 25px;
    }
    
    #static-chatbot-landing .gift-icon-bottom {
      display: none;
  
    }
  
  }
  
  @media (max-width: 500px) {
    .chat-container {
      width: 90%;
    }
  
    .chat-balloon {
      margin-left: 0;
      padding: 0.8em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
    }
  
    
  
    #static-actionButton {
      margin-left: 0;
      
    }
  
  
    .privacy-link {
      display: none;
    }
  
    .second-balloon .gift-icon-bottom {
      display: none;
    }
  
    .chat-balloon:first-of-type {
      max-width: calc(100% - 0px);
    }
  
    #static-chatbot-landing .gift-icon-top {
      width: 40px;
      height: 40px;
      position: absolute;
      left: 25px;
    }
    
    #static-chatbot-landing .gift-icon-bottom {
      display: none;
  
    }
  }
  
  @media (max-width: 498px) {
    .chat-container {
      width: 90%;
    }
  
    .chat-balloon {
      margin-left: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
    }
  
    
  
    #static-actionButton {
      margin-left: 0;
      
    }
  
  
    .second-balloon .gift-icon-bottom {
      display: none;
    }
  
    .chat-balloon:first-of-type {
      max-width: calc(100% - 0px);
    }
  
    #static-chatbot-landing .gift-icon-top {
      width: 40px;
      height: 40px;
      position: absolute;
      left: 25px;
    }
    
    #static-chatbot-landing .gift-icon-bottom {
      display: none;
  
    }
  }
  
  @media (max-width: 400px) {
  
  
    .chat-container {
      width: 90%;
    }
  
    .chat-balloon p {
      margin: 12px 0; /* Aumenta lo spazio verticale tra i paragrafi su schermi piccoli */
      text-align: left; /* Mantieni il testo allineato a sinistra */
      font-size: 13px; /* Riduci la dimensione del font per adattarsi allo schermo */
    }
  
    .chat-balloon {
      margin-left: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.173);
      padding: 20px; /* Imposta lo stesso padding per tutti i balloon */
      max-width: 100%; /* Balloon della stessa larghezza */
      text-align: left; /* Allinea correttamente il testo */
    }
  
    .chat-balloon:first-of-type {
      margin-top: 8px; /* Distacco tra green bar e primo balloon */
    }
  
    .second-balloon .gift-icon-bottom {
      display: none; /* Nasconde l'icona per schermi <= 400px */
    }
  
    .second-balloon {
      position: relative;
      padding: 20px; /* Padding uguale per il secondo balloon */
    }
  
    #static-actionButton{
      margin-left: 0;
    }
  
    #static-chatbot-landing .gift-icon-top {
      width: 40px;
      height: 40px;
      position: absolute;
      left: 25px;
    }
    
    #static-chatbot-landing .gift-icon-bottom {
      display: none;
  
    }
  }
  /***************************************************************fine media query per la pagina statica*******************************************/
  
  
  
  
  /***************************************** Media Queries per chatbot *************************************************************************/
  
  /* Media query per schermi fino a 600px */
  
  @media (max-width: 768px) {
    #chatbot img.gift-icon-top-chatbot {
      width: 35px;
      height: 40px;
      margin-right: 15px;
      filter: brightness(1.05);
      display: block !important;
      margin-top: 2em !important;
  
    }
  
    #chatbot .balloon {
      font-size: 14px;
    }
  
    #chatbot .pactions a {
      font-size: 12px;
      padding: 8px;
      min-width: calc(100% - 16px); /* Rende il bottone più grande su schermi piccoli */
    }
  
    #chatbot .coregQuestion {
      padding: 15px;
      font-size: 14px;
    }
  
    #chatbot .avatar-icon {
      position: absolute;
      /*top: 6rem;*/
      left: -40px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time {
      font-size: 12px;
      color: #888;
      /*top: 6rem;*/
      left: -40px;
    }
  
    #chatbot .avatar-icon-static {
      /*top: 6rem;*/
      left: -50px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time-static {
      font-size: 12px;
      color: #888;
      position: absolute;
      top: 55px;
      left: -50px;
  }
  
    /*#chatbot .balloon-container-static {
      margin-bottom: -35px;
    }*/
  
    #chatbot .balloon-container-static {
      display: flex;
      /*flex-direction: row;*/
      align-items: center;
      margin-bottom: -45px;
      width: 100%;
      position: relative;
  }
  
    #chatbot .fadeInScale {
      animation: fadeInScale 0.3s ease-out;
    }
  }
  
  @media (max-width: 600px) {
    #chatbot img.gift-icon-top-chatbot  {
      width: 35px;
      height: 40px;
      margin-right: 15px;
      filter: brightness(1.05);
      display: block !important;
      margin-top: 2em !important;
  
    }
  
    #chatbot .balloon {
      font-size: 14px;
    }
  
    #chatbot .pactions a {
      font-size: 12px;
      padding: 8px;
      min-width: calc(100% - 16px); /* Rende il bottone più grande su schermi piccoli */
    }
  
    #chatbot .coregQuestion {
      padding: 15px;
      font-size: 14px;
    }
  
    #chatbot .avatar-icon {
      position: absolute;
      /*top: 6rem;*/
      left: -40px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time {
      font-size: 12px;
      color: #888;
      /*top: 6rem;*/
      left: -40px;
    }
  
    #chatbot .avatar-icon-static {
      /*top: 6rem;*/
      left: -50px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time-static {
      font-size: 12px;
      color: #888;
      position: absolute;
      top: 55px;
      left: -50px;
  }
  
    /*#chatbot .balloon-container-static {
      margin-bottom: -35px;
    }*/
  
    #chatbot .balloon-container-static {
      display: flex;
      /*flex-direction: row;*/
      align-items: center;
      margin-bottom: -45px;
      width: 100%;
      position: relative;
  }
  
    #chatbot .fadeInScale {
      animation: fadeInScale 0.3s ease-out;
    }



  }
  
  @media (max-width: 598px) {
  
    #chatbot img.gift-icon-top-chatbot  {
      width: 35px;
      height: 40px;
      margin-right: 15px;
      filter: brightness(1.05);
      display: block !important;
      margin-top: 2em !important;
  
    }
  
    #chatbot .balloon {
      font-size: 14px;
    }
  
    #chatbot .pactions a {
      font-size: 12px;
      padding: 8px;
      min-width: calc(100% - 16px); /* Rende il bottone più grande su schermi piccoli */
    }
  
    #chatbot .coregQuestion {
      padding: 15px;
      font-size: 14px;
    }
  
    #chatbot .avatar-icon {
      position: absolute;
      /*top: 9rem;*/
      left: -40px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time {
      font-size: 12px;
      color: #888;
      /*top: 6rem;*/
      left: -40px;
    }
  
    #chatbot .avatar-icon-static {
     /* top: 8rem;*/
      left: -50px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time-static {
      font-size: 12px;
      color: #888;
      position: absolute;
      top: 45px;
      left: -50px;
  }
  
    /*#chatbot .balloon-container-static {
      margin-bottom: -35px;
    }*/
  
    #chatbot .balloon-container-static {
      display: flex;
      /*flex-direction: row;*/
      align-items: center;
      margin-bottom: -45px;
      width: 100%;
      position: relative;
  }
  
    #chatbot .fadeInScale {
      animation: fadeInScale 0.3s ease-out;
    }

  }
  
  
  @media (max-width: 500px) {
    #chatbot img.gift-icon-top-chatbot {
      width: 35px;
      height: 40px;
      margin-right: 15px;
      filter: brightness(1.05);
      display: block !important;
      margin-top: 2em !important;
  
    }
  
    #chatbot .balloon {
      font-size: 14px;
    }
  
    #chatbot .pactions a {
      font-size: 12px;
      padding: 8px;
      min-width: calc(100% - 16px); /* Rende il bottone più grande su schermi piccoli */
    }
  
    #chatbot .coregQuestion {
      padding: 15px;
      font-size: 14px;
    }
  
    #chatbot .avatar-icon {
      position: absolute;
      /*top: 9rem;*/
      left: -40px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time {
      font-size: 12px;
      color: #888;
      top: 6rem;
      left: -40px;
    }
  
    #chatbot .avatar-icon-static {
     /* top: 7rem;*/
      left: -50px;
      width: 35px;
      height: 40px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time-static {
      font-size: 12px;
      color: #888;
      position: absolute;
      top: 45px;
      left: -50px;
  }
  
    /*#chatbot .balloon-container-static {
      margin-bottom: -35px;
    }*/
  
    #chatbot .balloon-container-static {
      display: flex;
      /*flex-direction: row;*/
      align-items: center;
      margin-bottom: -45px;
      width: 100%;
      position: relative;
  }
  
    #chatbot .fadeInScale {
      animation: fadeInScale 0.3s ease-out;
    }


  }
  
  /* Media query per schermi fino a 498px */
  @media (max-width: 498px) {
    #chatbot img.gift-icon-top-chatbot {
      width: 30px;
      height: 35px;
      margin-right: 15px;
      filter: brightness(1.05);
      display: block !important;
      margin-top: 2em !important;
   
    }
  
    #chatbot .balloon {
      font-size: 13px;
      padding: 15px;
    }
  
    #chatbot .pactions a {
      font-size: 11px;
      padding: 6px;
      min-width: calc(100% - 16px); /* Allarga i bottoni su schermi piccoli */
    }
  
    #chatbot .coregQuestion {
      padding: 10px;
      font-size: 13px;
    }
  
    #chatbot .avatar-icon {
      /*top: 8rem;*/
      left: -40px;
      width: 30px;
      height: 35px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .message-time {
      font-size: 11px;
      top: 5rem;
      left: -35px;
    }
  
    #chatbot .avatar-icon-static {
      /*top: 5rem;*/
      left: -45px;
      width: 30px;
      height: 35px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    #chatbot .balloon-container-static {
      margin-bottom: -30px;
    }
  
    #chatbot .message-time-static {
      font-size: 12px;
      color: #888;
      position: absolute;
      top: 45px;
      left: -50px;
  }

  }
  
  /* Media query per schermi molto piccoli, fino a 400px */
  /*@media (max-width: 400px) {
    #chatbot .gift-icon-top {
      width: 25px;
      height: 30px;
      margin-right: 10px;
      filter: brightness(1.05);
      display: block !important;
    }
  
    #chatbot .balloon {
      font-size: 12px;
      padding: 10px;
    }
  
    #chatbot .pactions a {
      font-size: 10px;
      padding: 5px;
      min-width: calc(100% - 16px);
    }
  
    #chatbot .coregQuestion {
      padding: 8px;
      font-size: 12px;
    }
  
    #chatbot .avatar-icon {
   
      left: -35px;
      width: 25px;
      height: 30px;
      filter: brightness(1.25);
    }
  
    #chatbot .message-time {
      font-size: 10px;
      top: 4.5rem;
  
    }
  
    #chatbot .avatar-icon-static {
      top: 4.5rem;
      left: -40px;
      width: 25px;
      height: 30px;
      filter: brightness(1.25);
    }
  
    #chatbot .message-time-static {
      font-size: 12px;
      color: #888;
      position: absolute;
      top: 60px;
      left: -50px;
  }
  
    #chatbot .balloon-container-static {
      margin-bottom: -25px;
    }
  }*/
  
  /* Media query per schermi molto piccoli, fino a 400px */
  @media (max-width: 400px) {
    /* Ridimensionamento e allineamento dell'icona regalo in alto */
    #chatbot img.gift-icon-top-chatbot {
      width: 30px;
      height: 35px;
      margin-right: 12px;
      filter: brightness(1.1);
      display: block !important;
      margin-top: 2em !important;
   
    }
  
    /* Ottimizzazione del layout del balloon */
    #chatbot .balloon {
      font-size: 13px;
      padding: 12px;
      border-radius: 10px; /* Aggiunta di angoli arrotondati per migliorare l'estetica */
      line-height: 1.4; /* Maggiore leggibilità */
    }
  
    /* Ottimizzazione dei pulsanti di azione */
    #chatbot .pactions a {
      font-size: 11px;
      padding: 6px 10px;
      min-width: 100%; /* Larghezza massima disponibile per i pulsanti */
      margin-top: 5px; /* Spazio sopra i pulsanti */
    }
  
    /* Ottimizzazione del testo delle domande */
    #chatbot .coregQuestion {
      padding: 10px;
      font-size: 13px;
      line-height: 1.5;
    }
  
    /* Ridimensionamento e posizionamento dell'avatar */
    #chatbot .avatar-icon {
      left: -30px;
      width: 30px;
      height: 35px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    /* Ottimizzazione del tempo del messaggio */
    #chatbot .message-time {
      font-size: 11px;
      top: 5rem;
      left: -30px;
    }
  
    /* Icona statica avatar */
    #chatbot .avatar-icon-static {
     /* top: 7rem;*/
      left: -35px;
      width: 30px;
      height: 35px;
      filter: brightness(1.25);
      margin-top: 0em !important;
    }
  
    /* Tempo messaggio statico */
    #chatbot .message-time-static {
      font-size: 11px;
      color: #888;
      position: absolute;
      top: 45px;
      left: -35px;
    }
  
    #chatbot .balloon-container-static {
        display: flex;
        /*flex-direction: row;*/
        align-items: center;
        margin-bottom: -35px;
        width: 100%;
        position: relative;
    }

  }
  
  