#intelezo-chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #151a25;
    border-radius: 100%;
    padding: 3px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 1;
    visibility: visible;
}

#intelezo-chatbot-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: white;
    border: 2px solid #0E2A4C;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.hidden { display: none; }

#intelezo-chat-header {
    background: #0E2A4C;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#intelezo-chat-messages {
    padding: 10px;
    overflow: auto;
    font-size: 14px;
    max-height: 260px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
}


#intelezo-chat-input-cont{
        min-height: 48px;
    max-height: 200px;
    padding: 0px 16px 16px 16px;
    width: 100%;
    box-sizing: border-box;
}

#intelezo-chat-input {
    border: none;
    border-top: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 24px;
    box-shadow: rgba(9, 14, 21, 0.9) 0px 0px 4px 0px;
    outline: rgb(247, 247, 247) solid 0px;
        transition: outline-width 150ms;
}

#intelezo-chatbot-box.hidden {
    display: none;
}

#intelezo-chat-header {
    background: #0E2A4C;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: left;
    position: relative;
}

.user-msg {
    background-color: #0E2A4C;
    color: #fff;
    padding: 10px 12px;
    border-radius: 15px 15px 0 15px;
    max-width: 85%;
    margin: 8px 0 8px auto;
    text-align: right;
}

.bot-msj {
    background-color: #d1d1d1;
    color: #0E2A4C;
    padding: 10px 12px;
    border-radius: 15px 15px 15px 0;
    max-width: 85%;
    margin: 8px auto 8px 0;
    text-align: left;
}

#intelezo-chatbot-box.expand {
  width: 90vw !important;
  height: 90vh !important;
  max-height: 500px;
  max-width: none;
  bottom: 5vh !important;
  right: 5vw !important;
  z-index: 9999;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

#intelezo-chatbot-box.expand #intelezo-chat-messages {
    max-height: 430px;
    min-height: 290px;
}


#intelezo-chat-close, #intelezo-chat-expand{
        font-size: 1.5em;
    padding: 0px 10px;
}

.contactolinksCont {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
      align-items: center;
      width: 100%;
      padding: 1em 0px;
      text-align: center;
}

.contactolinksCont a{
    display:inline-block;
    width: auto;
    margin:0px !important;
    font-size: 15px;
    font-weight: 400;
    border-radius: 10px 10px 10px 10px !important;

}
