body {
    font-family: Georgia !important;
}

.logo {
    width: 80%;
    margin-left: 10%;
    margin-top: 20px;
}

.arymalabs-color {
    color: #055477 !important;
}

.sidebar {
    text-align: center;
    color: #000 !important;
}

.description {
    color: #000;
}

.login-form-container {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 10px 20px;
    margin-top: 50px;
}

.gpt-search-box {
    height: 50px;
    background: rgb(235, 240, 241);
    color: #57585a !important;
}

.gpt-search-button {
    height: 50px;
    background: #acb0b7;
    color: #fff;
}

.gpt-search-button:hover {
    background: #d4d4d8;
}

.btn-primary {
    background-color: #055477!important;;
    color: #fff;
}

.btn-primary:hover {
    background-color: #122E40 !important;
    color: #fff;
}

.sample-question {
    cursor: pointer;
}

.gpt-search-form {
}

.full-height {
    display: flex;
    height: calc(100vh - 120px);
    flex-direction: column;
    position: relative;
    overflow-y: scroll;
}


.gpt-search-form .d-flex {
    gap: 20px;
}

.gpt-search-form form {
    margin-block-end: 0;
}

.gpt-history-container {
    overflow-y: scroll;
    flex-grow: 1;
    padding-right: 10px;
}

.gpt-chat-message {
    display: flex;
    width: 100%;
    position: relative;
    overflow-wrap: anywhere;
}

.gpt-message {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    padding-top: 30px;

}

.gpt-chat-message .speech-icon,
.gpt-chat-message .pause-icon,
.gpt-chat-message .play-icon {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 5px 10px;
    cursor: pointer;
    background: #eee;
    border: 1px solid #ddd;
    font-size: 24px;
    width: 40px;
}

.gpt-chat-message.ai-sent {
    padding-right: 15%;
}

.gpt-chat-message img {
    height: 30px;
    width: 30px;
}

.gpt-chat-message .description {
    flex-grow: 1;
    max-width: 100%;
}

.gpt-chat-message.ai-sent .description {
    margin-left: 30px;
}

.gpt-chat-message.user-sent {
    margin-left: auto;
    text-align: right;
    padding-left: 15%;
}

.gpt-chat-message.user-sent .description {
    text-align: right;
    margin-left: 0;
    margin-right: 30px;
}

.cursor {
    display: inline-block;
    background-color: black;
    margin-left: 2px;
    width: 2px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    50% { background-color: transparent; }
}

.errors {
    color: red;
}

.modal-header {
    justify-content: space-between;
}

.accordion-item {
    background-color: transparent;
}
.accordion-collapse {
    padding: 10px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-header button {
    font-size: 12px !important;
}

.sidebar {
    height: 100vh;
    overflow-y: scroll;
    position: relative;
}

.line-break {
    width: 100%;
}

.similar-question {
    width: 80%;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 15px;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.response-image {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 30px;
}

.was-this-helpful {
    border: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.was-this-helpful i {
    cursor: pointer;
}

.answered .was-this-helpful i {
    cursor: not-allowed;
}

.w-90 {
    width: 90%;
}

.terms-and-policies {
    font-size: 1.1rem;
}

.footer-contents a,
.footer-contents {
    color: #888;
    font-size: 12px;
}

.footer-contents.label {
    font-size: 14px;
}

.terms-and-policies h5 {
    margin-top: 1rem !important;
}

.messages {
    position: fixed;
    width: 100%;
    z-index: 100;
    text-align: center;
    list-style: none;
    padding: 0;
}

.messages .message {
    padding: 10px;
}

.messages .message.success {

}

.dan-white-book {
    cursor: pointer;
}

.no-arrow-accordion .accordion-button::after {
    background-image: none;
}

.color-change-animation {
  margin-left: 5px;
  -webkit-animation: color-change-animate 1s infinite;  /* Safari 4+ */
  -moz-animation: color-change-animate 1s infinite;  /* Fx 5+ */
  -o-animation: color-change-animate 1s infinite;  /* Opera 12+ */
  animation: color-change-animate 1s infinite;  /* IE 10+, Fx 29+ */
}

@-webkit-keyframes color-change-animate {
  0%, 49% {
      color: red;
  }
  50%, 100% {
      color: blue;
  }
}

.login-container {
    width: 50% !important;
}

@media screen and  (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .login-container {
        width: 80% !important;
    }
}
