@import "styles-variables.css?v=audit-400";
body {
    font-family: 'Manrope';
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 16px;
}

.chatbot-bot-text a {
  color: #000000; 
}

.chatbot-confirmation-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 12px;
    padding: 7px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
    max-width: 100%;
    line-height: 1.5;
    font-size: 14px;
    border-radius: 5px;
}

.confirmation-info-text {
    margin-bottom: 14px !important;
    color: #333 !important;
    text-align: center;
    width: 100%;
}

.confirmation-submit-button {
    background-color: #E7D4ED !important; 
    color: #333 !important;
    padding: 14px 24px !important;
    border: none;
    border-radius: 8px !important;
    cursor: pointer;
    font-weight: 600 !important;
    font-size: 14px !important;
    align-self: center !important;
    max-width: auto;
    width: auto;
    line-height: 0.5 !important;
    max-height: 36px;
}

.confirmation-submit-button:hover{
    background-color: #A101BE !important;
    color: #fff !important;
}

.timeout-warning-msg {
    display: flex; 
    background-color: #f4e0b9; 
    color: #8b8b8b; 
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 12px !important;
    font-weight: 400;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 10%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: skeleton-pulse 1.5s infinite; 
    min-width: 250px;
    max-height: fit-content;
    left: 47%;
}


@keyframes skeleton-pulse {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

#chatgpt-open-btn.avatar-icon {
    width: 56px;
    padding: 5px 5px;
}


#chatgpt-open-btn.dashicon {
    padding: 25px;
    
    height: 20px;
    width: 20px;
}

 .chatbot-bubble {
    display: none;
 }


.chatbot-container * {
    
    min-height: 600px;
}


#chatbot-chatgpt {
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    width: 0; 
    height: 0; 
    opacity: 0; 
    transform: scale(0); 
    overflow: hidden;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    background-color: #f7f7f7 !important;
    transform-origin: bottom right; 
}

#chatbot-chatgpt.visible {
    width: 350px; 
    height: 75vh; 
    opacity: 1; 
    transform: scale(1); 
    background-color: #f7f7f7 !important;
}

#chatbot-chatgpt.hidden {
    width: 0; 
    height: 0; 
    opacity: 0; 
    transform: scale(0); 
    overflow: hidden; 
}


.chatbot-floating-style {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #f7f7f7 !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 100;
    padding-bottom: 10px;
}


.chatbot-embedded-style {
    height: 50vh !important; 
    overflow: hidden;
    position: relative !important; 
    margin: 10px auto; 
    padding: 10px; 
    background-color: #ffffff !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    left: 0;
    right: 0;
}


.chatbot-wide {
    width: 400px !important;
    height: 75vh !important; 
    overflow: visible;
}


.chatbot-narrow {
    width: 400px !important;
    height: 75vh !important; 
    overflow: visible;
}


.chatbot-full {
    width: 100% !important;
    height: 100% !important;
    overflow: visible;
}


#chatbot-chatgpt.wide {
    max-width: 350px;
    min-height: 75vh;
}

#chatbot-chatgpt.embedded-width {
    width: 90%;
}

#chatbot-chatgpt-header {
    border: 1px solid #E3E3E3 !important;
    max-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 16px;
    background-color: #f9f9f9 !important;
    color: #202325;
}


#chatbot-icon {
    background-color: #F0F1F3; 
    height: 44px; 
    width: 44px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 10px; 
}


#chatbot-icon img {
    height: 24px !important; 
    width: 24px !important; 
}

#chatbot-title-container {
    display: flex;
    flex-direction: column;
    color: var(--primary-text-color);
    flex-grow: 1;
}

#chatbot-chatgpt-title {
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 24px;
    margin: 0;
}

#chatbot-chatgpt-subtitle {
    font-size: 14px;
    color: #72777A;
    font-weight: 400; 
    margin-top: -5px;
}

#chatbot-header-actions-container {
    margin-top: 5px;
}


#chatbot-chatgpt-text-to-speech-btn img {
    height: 24px;
    width: 24px;
}

#chatbot-three-dots img {
    height: 24px;
    width: 24px;
}








/* Trigger button */
#chatbot-chatgpt-options {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 12px 20px;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 500;
  user-select: none;
  box-shadow: none;
}

/* Dropdown wrapper */
.dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-70%);
  top: 50px;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E4E4E4;
  z-index: 1000;
}

/* When dropdown is shown */
.dropdown-content.show {
  display: block;
  animation: dropdown-open 0.2s ease-out;
}

/* Dropdown animation (vertical only) */
@keyframes dropdown-open {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Dropdown buttons */
.dropdown-content button {
  width: 100%;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #454B58;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s ease, color 0.25s ease;
  outline: none;
  font-weight: 500 !important;
}

.dropdown-content button:hover {
  background-color: #E7D4ED;
  color: #A101BE;
}

/* Icon in buttons */
.dropdown-content button img {
  width: 18px;
  height: 18px;
  filter: grayscale(100%);
  transition: filter 0.25s ease;
}

.dropdown-content button:hover img {
  filter: grayscale(0%);
}

/* Optional separator line */
.separator {
  background-color: #E4E4E4;
  margin: 0 15px;
  height: 1px;
}

/* Accessibility: Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}












#chatbot-chatgpt-header-embedded {
    background-color: #A101BE;
    color: #ffffff;
    padding: 10px;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#chatbot-chatgpt-conversation {
    flex-grow: 1;
    padding: 10px 10px 10px 20px !important;
    overflow-y: auto;
    max-height: 80%;
    margin-bottom: 50px;
    overflow-x: hidden;
}

#chatbot-chatgpt-input {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
    border: 0;
    font-size: 14px;
    width: 100% !important;
}

#chatbot-chatgpt-input-area {
    flex-grow: 1;
    width: 100% !important;
    min-height: 50px;
    padding-top: 10px;
}

textarea {
    width: 100% !important;
    box-shadow: none;
    resize: none;
    border: none !important; 
    outline: none !important; 
    overflow: hidden;
    
    height: 30px; 
    font-size: 14px !important;
    background-color: white;
}

textarea:focus,
textarea:active {
    border: none !important; 
    outline: none !important; 
}

textarea::-webkit-input-placeholder {
    
    padding-left: 10px; 
    padding-bottom: 5px;
}

textarea:-ms-input-placeholder {
    
    padding-left: 10px;
    padding-bottom: 5px;
}

textarea::-moz-placeholder {
    
    padding-left: 10px;
    padding-bottom: 5px;
}

textarea:-moz-placeholder {
    padding-left: 10px;
    padding-bottom: 5px;
}

textarea::-webkit-input-placeholder {
    padding-left: 10px;
}

#chatbot-chatgpt-message:focus {
    border: 1px solid black;
    outline: none;
}

#chatbot-chatgpt-submit {
    background-color: transparent !important;    
    border: none;
    border-radius: 1px;
    padding: 1px 1px;
    margin-left: 1px;
    cursor: pointer;
}

#chatbot-chatgpt-buttons-container {
    justify-content: center;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

#chatbot-chatgpt-submit:hover {
    background-color: transparent !important;    
}

#chatbot-chatgpt-upload-file {
    background-color: #ffffff;
    border: none;
    border-radius: 1px;
    padding: 1px 1px;
    margin-left: 1px;
    cursor: pointer;
    outline: none;
}

#chatbot-chatgpt-upload-mp3 {
    background-color: #ffffff;
    border: none;
    border-radius: 1px;
    padding: 1px 1px;
    margin-left: 1px;
    cursor: pointer;
}

#chatbot-chatgpt-erase-btn {
    background-color: #ffffff;
    border: none;
    border-radius: 1px;
    padding: 1px 1px;
    margin-left: 1px;
    cursor: pointer;
}

.chat-message {
    margin-top: 10px;
    padding: 10px;
    word-wrap: break-word;
    color: #303437;
}

.chat-message-indicator {
    margin-top: 10px;
    padding: 5px;
    word-wrap: break-word;
    color: #303437;
}

.user-message {
    text-align: left;
    font: inherit;
    max-width: 60%;
}

.chatbot-user-text {
    display: inline-block;
    background-color: var(--fourth-button-color) !important;
    color: var(--secondary-text-color);
    padding: 5px 10px;
    border-radius: 20px 5px 20px 20px;
    overflow-wrap: anywhere;
    font: inherit;
    font-size: 14px !important;
    padding-top: 14px;
    padding-bottom: 0px;
}

.bot-message {
    text-align: left;
    background-color: #ffffff !important;
    border-radius: 5px 20px 20px 20px;
    max-width: 60%;
    width: auto;
    color: #303437 !important;
    word-wrap: break-word;
    padding-top: 14px;
    padding-bottom: 0px;
}

.chatbot-bot-text {
    background-color: #fff !important;
    border-radius: 0 24px 24px 24px;
    overflow-wrap: anywhere;
    font: inherit;
    color: var(--primary-text-color) !important;
    word-wrap: break-word;
    font-size: 14px;
    min-width: 25%;
}

.error-message {
    display: inline-block;
    background-color: red;
    color: black;
    padding: 5px 10px;
    border-radius: 12px 12px 12px 0;
    overflow-wrap: anywhere;
    font: inherit;
}

.error-text {
    color: black;
    font: inherit;
}

.message-space {
    height: 1px;
}

.chatbot-collapse-btn {
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 1px;
    border-radius: 1px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 0;
}


.chatbot-collapsed {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

#chatgpt-open-btn-dashicon {
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
}

#chatgpt-open-btn {
    transition: width 0.5s ease, height 0.5s ease;
    position: fixed;
    bottom: 2%;
    right: 2%;
    background-color: #E7D4ED;    border: none;
    cursor: pointer;
    padding: 15px;
    float: right;
    box-shadow: 2px 4px 15px rgb(159, 159, 159);
    border-radius: 50%;
    width: 50px;
    z-index: 100;
    font: inherit !important;
    display: flex; 
    justify-content: center; 
    align-items: center;
    outline: none;
}

.blurred-unselectable {
    filter: blur(5px);  /* Adjust blur intensity as needed */
    pointer-events: none;  /* Makes the area unclickable */
    opacity: 0.6;  /* Optional: to give it a faded look */
}


#chatgpt-open-btn img {
    margin: 4px 2px 0px 5px;
}

#chatbot-chatgpt-title.title {
    color: #ffffff;
    font-size: inherit;
    flex-grow: 1;
}

.chatbot-typing-indicator{
    justify-content: left;
    background-color: #ffffff;
    padding: 0px 0px 4px 9px;
    border-radius: 12px 12px 12px 0;
    align-items: flex-end;
    display: flex;
    max-width: 35px;
}

.chatbot-typing-dot {
    margin-right: 3px;
    color: #e3e7ee !important;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.chatbot-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.chatbot-attribution {
    text-align: center;
    font-size: 12px;
}

.chatbot-attribution-link {
    text-decoration: none;
    font-size: 10px;
}

.chatbot-attribution-text {
    text-align: center;
    font-size: 12px;
}

@keyframes typing {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#chatbot-chatgpt-custom-buttons {
    justify-content: center;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 5px;
}

.chatbot-chatgpt-custom-button-class {
    background-color: #A101BE;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    align-items: center;
    display: inline-flex;
  }

.chatbot-chatgpt-custom-button-class:hover {
    background-color: #1E3A8A;
}

.chatbot-chatgpt-custom-button-class a {
    color: inherit;
    text-decoration: none !important;
}

.chatbot-chatgpt-custom-button-class a:hover {
    color: inherit;
    text-decoration: none !important;
}

.chatbot-chatgpt-chatbot-history {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 10px;
}

@media only screen and (max-width: 600px) {
    #chatbot-chatgpt-conversation {
        flex-grow: 1;
        padding: 10px;
        overflow-y: auto;
        max-height: 80%;
        margin-bottom: 100px;
        overflow-x: hidden;
    }
}
    

@media only screen and (min-width: 600px) {
#chatbot-chatgpt-conversation {
        flex-grow: 1;
        padding: 10px;
        overflow-y: auto;
        max-height: 80%;
        margin-bottom: 50px;
        overflow-x: hidden;
    }
}

.chatbot-options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center the rows */
    gap: 10px;
    padding-left: 0; /* remove offset so centering works */
    padding-top: 20px;
}

.chatbot-option {
    background-color: var(--primary-button-color);
    color: var(--thrid-text-color);
    border: none;
    padding: 10px 15px;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;

    flex: 0 0 calc(33.33% - 10px); /* ⬅ enforce 3 per row */
    box-sizing: border-box;

    max-height: 35px;
    min-height: 35px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}


.chatbot-option:hover {
    background-color: var(--secondary-button-color);
    color: #FFFFFF; 
    font-weight: 500;
}

.chatbot-option.rounded {
    border-radius: 24px; 
}

@media screen and (max-width: 600px) {
    .chatbot-option {
        flex: 1 1 100%; 
        max-width: 90%; 
    }
}    


.chatbot-option.active {
    background-color: var(--secondary-button-color);
    color: white;              
    font-weight: 500;
}


.chatbot-option.disabled {
    background-color: #a79d9d;
    color: black;
    cursor: not-allowed;
    pointer-events: none; 
}


.chatbot-divider {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #ccc;
    width: 100%;
}

#chatbot-chatgpt-conversation::-webkit-scrollbar {
    width: 0px; 
    background: transparent;
    overflow-x: hidden;
}

#chatbot-chatgpt-conversation::-webkit-scrollbar-thumb {
    width: 0px; 
    background: transparent;
    overflow-x: hidden;
}

#chatbot-chatgpt-conversation::-webkit-scrollbar-track {
    width: 0px; 
    background: transparent;
}


#chatbot-chatgpt-conversation {
    scrollbar-width: 0px; 
    scrollbar-color:transparent;
    overflow-x: hidden;
}


.chatbot-input-wrapper {
    position: relative;
    max-width: 98%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border-radius: 8px;
    padding: 0px;
    box-shadow: none;
}


#chatbot-chatgpt-message {
    flex: 1;
    font-size: 14px;
    border: 1px solid #ccc;
    resize: none;
    outline: none;
    background-color: #fff;
    max-height: 45px; 
    min-width: 60%;
    height: auto;
}


.chatbot-input-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-input-buttons button {
    background: none;
    border: none;
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
    outline: none;
}

.chatbot-input-buttons img {
    width: 20px !important;
    height: 20px !important;
}


#chatbot-chatgpt-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: white;
    z-index: 100;
    padding: 0px;
    box-shadow: none;
}


input[type="file"] {
    display: none;
}    

.icon-image {
    width: 16px;
    height: 16px;
}

div.message-date {
    font-size: 10px;
    padding-top: 2px;
    color: #72777A;
}    

div.message-date.user-date {
    text-align: right;
    padding-right: 10px;
}

div.message-date.bot-date {
 margin-left: 42px;
}

#chatbot-chatgpt-title.title {
    display: flex;              
    align-items: center;        
    color: #ffffff;
    font-size: inherit;
    flex-grow: 1;
}

.bot-icon {
    width: 35px;                
    height: 35px;               
    margin-right: 8px;          
}    

#chatbot-mic-icon:hover {
 background : transparent !important;
}    

.button-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.outline-button {
    display: flex;
    align-items: center; 
    padding: 6px 10px;
    font-size: 12px;
    background-color: #E7D4ED; 
    color: #A101BE; 
    border: none;
    border-radius: 24px;
    cursor: pointer;
    max-height: 35px;
    transition: all 0.5s ease;
    font-weight: 500;
}

.conversation-end-msg {
    font-size: 12px;
    color: #303437
}

.outline-button:hover {
    background-color: #A101BE; 
    color: #FFFFFF; 
    font-weight: 500;
}

.button-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}    

.survey-container {
    width: inherit;
    margin: 10px auto;
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.survey-question {
    font-size: 14px !important;
    margin-bottom: 10px;
}

.survey-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 10px;
    padding-bottom: 10px;
}
.survey-option {
    display: flex;
    align-items: center; 
    padding: 6px 10px;
    font-size: 12px;
    background-color: #E7D4ED; 
    color: #A101BE; 
    border: none;
    border-radius: 50px;
    cursor: pointer;
    max-height: 35px !important;
    transition: all 0.5s ease;
    font-weight: 500;
}
.survey-option:hover {
    background-color: #A101BE;
    color: white;
}
.survey-option.selected {
    background-color: #A101BE;
    color: white;
}
.survey-option.disabled {
    background-color: #d3d3d3;
    color: #9e9e9e;
    pointer-events: none;
}
.survey-option.hard-disabled {
    background-color: #a2a1a1;
    color: #535252;
    pointer-events: none;
}

.survey-button {
    display: flex;
    align-items: center; 
    padding: 6px 10px;
    font-size: 12px;
    background-color: #E7D4ED; 
    color: #A101BE; 
    border: none;
    border-radius: 24px;
    cursor: pointer;
    max-height: 35px !important;
    transition: all 0.5s ease;
    font-weight: 500;
 
}

.survey-question-space {
    height: 20px; 
}

.survey-button:hover {
    background-color: #A101BE;
}

.answered-question {
    margin-top: 20px;
    padding: 10px;
    background-color: #E7D4ED;    border-radius: 8px;
    font-size: 12px !important;
}

#submit-survey {
  justify-content: center;align-content:center; 
  display: flex;
  align-items: center; 
  padding: 6px 10px;
  font-size: 12px;
  background-color: #E7D4ED; 
  color: #A101BE; 
  border: none;
  border-radius: 24px;
  cursor: pointer;
  max-height: 35px !important;
  transition: all 0.5s ease;
  font-weight: 500;
}

.survey-question { 
  margin-left: 10px;
  padding-top: 20px
  
}

/* .survey-container {
    width: 100%;
    max-width: 500px; Adjust the max width as needed
    margin: 0 auto; Centers the container on the page
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    text-align: center; Centers all content inside the container
} */

.survey-button {
    padding: 10px 20px; /* Adjust padding for spacing */
    font-size: 14px; /* Increase font size if needed */
    background-color: #E7D4ED;    color: #A101BE;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px; /* Adds space above the button */
}

.survey-button:hover {
    background-color: #A101BE;
    color: white;
}


.datepicker-container {
    margin: 20px auto;
    width: 300px;
    font-family: Arial, sans-serif;
}

.disabled-container {
    background-color: #f0f0f0;
    pointer-events: none; 
    opacity: 0.5;
}

.disabled-container select {
    background-color: #f0f0f0;
    color: #999;
}

.disabled-container .ui-datepicker-header {
    background-color: #f0f0f0;
}

.disabled-container .ui-state-disabled {
    background-color: #d3d3d3;
    color: #999;
}

#datepicker-container {
    margin-left: 44px;
    margin-top: 4px;
    margin-bottom: 10px;
}

.air-datepicker {
    border-radius: 8px;
    border: 1px solid #E5E9EF;
    font-size: 12px;
    --adp-font-family: inherit;
    --adp-day-name-color: #B9C2CB;
    --adp-background-color: #fff;
    --adp-background-color-hover: #E5E9EF;
    --adp-background-color-active: #A101BE;;
    --adp-background-color-in-range: #A101BE;;
    --adp-background-color-in-range-focused: #A101BE;;
    --adp-background-color-selected-other-month-focused: #A101BE;;
    --adp-background-color-selected-other-month: #A101BE;
    color: var(--primary-text-color) !important;
}

.air-datepicker-nav {
    font-size: 10px;
    padding: 4px 8px;
}

.air-datepicker-nav--title {
    font-size: 16px !important;
    font-weight: bold !important;
}

.air-datepicker-body--day-name {
    color: #B9C2CB !important;
    font-size: 11px !important;
}

.air-datepicker-body--day {
    font-size: 12px !important;
}

.disabled-container .air-datepicker {
    opacity: 0.7;
    pointer-events: none;
}

.air-datepicker-nav--action {
    width: 20px;
    height: 20px;
}

.air-datepicker-cell.-selected- {
    color: #fff !important;
    background: var(--secondary-button-color) !important;
}

#chatbot-input-error {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F8E2DF;
  color: #db261a;
  border: none;
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  box-sizing: border-box;
  max-width: min(90%, 520px);
  z-index: 9999;
  display: none;
}

#chatbot-input-error.is-visible { display: inline-flex; }

div.disclaimer-box {
    color: var(--primary-text-color);
    font-size: var(--info-text-font-size);
    text-align: left;
    margin-bottom: 20px;
    max-width: 80%;
}

button.disclaimer-box-button {
    padding: 10px 20px !important;
    font-size: var(--info-text-font-size) !important;
    border-radius: 5px !important;
    border: none !important;
    background-color: var(--fourth-button-color) !important;
    color: #ffffff !important;
    cursor: pointer !important;

    &:hover {
        background-color: var(--third-button-color) !important;
    }

    &:focus {
        background-color: var(--third-button-color) !important;
    }
}

button#chatbot-chatgpt-speech-recognition-btn {
    background-color: #ffffff;
    &:hover {
        background-color: var(--secondary-button-color);
    }
}

a.ai-chat-link {
    font-weight: bold;
    &:hover {
        text-decoration: underline;
    }
}