.delphi-main-container {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  .conversation-container {
    max-width: 450px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px 0 0 8px;
    background-color: #fff;
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 1035;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .user-container {
    border: 1px solid #ccc;
    border-left: none;
    width: 30%;
    border-radius: 0 8px 8px 0;
    height: 115px;
  }

  .dropdown {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    outline: none;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0 8px 0 0;
  }
  .select-user {
    padding: 10px 20px;
  }
  .user {
    margin-bottom: 10px;
  }
  .header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .header-info {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
  }
  .name {
    font-weight: bold;
  }
  .position {
    font-size: 12px;
    color: #777;
  }

  .input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-top: 1px solid #ccc;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .email-input-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 60px 20px 36px;
    /* padding: 20px 20px 36px;
    background-color: #f5f5f5;
    border-radius: 8px; */
  }

  .override-input-box{
    margin-top: 36px;
  }
  .override-input{
    background-color: #f5f5f5
  }

  /* .email-input-container > .input-box{
    margin-top: 36px;
  }
  .email-input-container > .input-box > .input{
    background-color: #f5f5f5
  } */

  .input {
    flex: 1;
    border: none;
    padding: 10px 0 10px 10px;
    font-size: 14px;
    outline: none;
    width: 100%;
  }
  .input-box {
    width: 100%;
    position: relative;
    height: 100%;
  }
  .button {
    border: none;
    margin-left: 10px;
    cursor: pointer;
  }
  #send-message img {
    background: #f5f5f5;
  }
  .email-button {
    border: none;
    cursor: pointer;
    background-color: #14233b;
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
  }
  .message-list {
    padding: 10px;
    height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .message-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .user-conversation {
    background-color: #14233b;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    align-self: flex-end;
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .clone-conversation {
    background-color: #f5f5f5;
    color: #000;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    align-self: flex-start;
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
  }
  .loder-conversation {
    background-color: #f5f5f5;
    color: #000;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    align-self: flex-start;
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 0.2;
  }

  .clone-conversation .callout {
    display: inline-block;
    background-color: #e0e0e0;
    color: #000;
    padding: 8px 9px;
    border-radius: 8px;
    margin: 2px 0px;
    font-size: 0.7em;
    cursor: pointer;
  }
  .mic-icon,
  .stop-mic-icon {
    background: #fff;
    padding: 10px;
  }

  .mic-icon img,
  .stop-mic-icon img {
    height: 20px;
    cursor: pointer;
  }
  .otp-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .otp-input::-webkit-outer-spin-button,
  .otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


  .otp-input {
    width: 36px;
    margin: 0 4px;
    text-align: center;
    font-size: 16px;
    background: inherit;
    cursor: not-allowed;
    pointer-events: none;
    border: 1px solid gray;
    border-radius: 4px;
    padding: 5px;
  -moz-appearance: textfield;

  }

  .otp-input:focus {
    outline: 1px solid blue;
  }

  .otp-input:nth-child(1) {
    cursor: pointer;
    pointer-events: all;
  }
  .error {
    text-align: center;
    color: red;
    font-size: 14px;
    margin-top: 10px;
  }
  .email-title {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin: 0 auto 5px;
    max-width: 386px;
  }
  .email-title a{
    color: #007BFF;
  }
  .otp-title {
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    max-width: 321px;
    margin: 12px auto;
  }
  .email-info {
    text-align: center;
    font-size: 13px;
    color: gray;
  }
  .otp-description {
    text-align: center;
    font-size: 12px;
    max-width: 292px;
    margin: 42px auto 16px;
    line-height: 1.3;
    color: gray;
  }
  .resend-otp {
    text-align: center;
    font-size: 12px;
    margin-top: 67px;
    color: gray;
  }
  .resend-otp span {
    color: blue;
    cursor: pointer;
  }
  #timer {
    color: black;
  }
  .empty-box {
    height: 76px;
  }
  .otp-loader {
    text-align: center;
  }
  .otp-loader img {
    width: 20px;
  }
  .email-button:disabled , #send-message:disabled {
    cursor: not-allowed;
  }
  .thanks-msg {
    text-align: center;
    max-width: 356px;
    margin: 20px auto 0;
    font-size: 18px;
    font-weight: 600;
  }
  .thanks-msg a {
    color: blue;
  }

  .loader {
    display: flex;
    gap: 5px;
  }
  .loader span {
    width: 10px;
    height: 10px;
    background: black;
    border-radius: 20px;
    animation: myloader 0.8s infinite alternate;
  }
  .loader span:nth-of-type(2) {
    animation-delay: 0.2s;
  }
  .loader span:nth-of-type(3) {
    animation-delay: 0.6s;
  }
  .delphi-close-icon{
    position: fixed;
    right: 10px;
    display: none;
  }
  .delphi-close-icon img{
    width: 18px;
  }
}

.delphi-citations-loader{
  text-align: center;
}
.delphi-citations-loader img{
  width: 24px;
}

.custom-border{
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 20px;
}



@media (max-width: 567px) {
  .delphi-angle-circle-floating-icon{
    display: none;
  }
  .conversation-container{
    max-width: 100% !important;
    bottom: 0px !important;
    height: 100%;
    position: fixed !important;
    right: 0px !important;
   }
  .message-list{
    height:82% !important ;
  }
  .input-container{
    position: fixed;
    bottom: 0px !important;
    width: 100%;
  }
  .delphi-close-icon{
    display: block !important;
  }
  #email-input,#question-input{
    font-size: 16px !important;
  }
  .delphi-close-icon{
    padding: 6px 12px;
  }
  .delphi-floating-icon img{
    width: 20px !important;
  }
  .ask-mark{
    font-size: 12px !important;
  }
  .delphi-citaions-bind{
    padding: 1rem 2rem !important;
  }

  .email-title{
    font-size: 12px !important;
  }

}

@keyframes myloader {
  0% {
    opacity: 0.9;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}

.delphi-floating-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 16px;
  padding: 12px 24px;
  color: #fff;
  background-color: #14233b;
}


.delphi-angle-circle-floating-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 16px;
  padding: 12px 24px;
  color: #fff;
  background-color: #14233b;
}

.ask-mark{
  margin-left: 8px;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: normal;
}
.delphi-citaions-bind{
  padding: 1rem 3rem;
}
.citation-tittle{
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.content{
  font-size: 14px;
  font-family: sans-serif;
  line-height: 1.5;
  max-height: 4.5em; /* 3 lines of text */
  overflow: hidden;
  /* transition: max-height 0.2s ease-out; */
}

.content.expanded {
  max-height: none; /* expand to full height */
}

.toggle-description{
  border: none;
  background:none;
  padding: 0px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #a3a3a3;
  width: 100%;
  text-align: left;
  font-weight: 700;
}
