body {
    margin:0;
    padding:0;
	width: 100%;
	height: 100%;
    overflow-x: hidden;
	overflow-y: scroll;
}

html {
    margin:0;
    padding:0;
	width: 100%;
	height: 100%;
    overflow-x: hidden;
	overflow-y: scroll;
}

.chatProcessingloader {
    display: flex;
    gap: 8px;
  }
  
  .typingLoader {
    font-style: italic;
    color: #888;
    display: flex;
    padding: 10px;
    border-radius: 10px;
    align-self: flex-start;
    margin-right: auto;
    max-width: 80%;
    position: relative;
    word-wrap: break-word;
    font-family: sans-serif;
    gap: 3px
}

.userMsgOptBox div {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
}

  .dot {
    width: 10px;
    height: 10px;
    background-color: #bcbcbc;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
  }

  .dot:nth-child(1) {
    animation-delay: 0s;
  }

  .dot:nth-child(2) {
    animation-delay: 0.2s;
  }

  .dot:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes bounce {
    0%, 80%, 100% {
      transform: translateY(0);
      opacity: 0.6;
    }
    40% {
      transform: translateY(-10px);
      opacity: 1;
    }
  }

.mainTopBtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

span.menu-span {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    background: #eaeaea;
    position: relative;
}

.userMsgOptBox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 5px;
    border-top: 1px solid #80808038;
    justify-content: flex-end;
}

.menu-modal {
    display: flex
;
    position: absolute;
    top: 40px;
    background: #fff;
    padding: 5px;
    right: 0;
    border: solid 1px #e0e0e0;
    border-radius: 10px;
    box-shadow: 1px 1px 9px 1px #7070703b;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
}

span.menu-option:hover {
background: #f0f0f0;
}

span.menu-option {
    padding: 7px 10px;
    min-width: max-content;
    font-family: sans-serif;
    font-size: 15px;
    cursor: pointer;
    color: #3e3e3e;
    border-radius: 0;
    width: calc(100% - 20px);
    font-weight: 500;
    z-index: 100;
    border-bottom: solid 1px #b7b7b73d;
}

span.menu-option:last-child {
border-bottom: 0;    
}

.bot-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 5px;
    border-top: 1px solid #80808038;
    justify-content: space-between;
}

.bot-actions div {
    display: flex;
    align-items: center;
    gap: 0px;
}

.bot-actions span {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #040080;
    background: 0;
    font-size: 14px;
}

p.chatTimeStamp {
    font-size: 14px;
    color: #8e8e8e;
}

.bot-actions span:hover {
background: #fff;
}

a {
    font-weight: 600;
    color: #3900e8;
        text-decoration: none;
}

body,div,p,span,h1,h2,h3,h4,h5 {
 -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE */
  user-select: none;
  }

.mainScreen {
    width: 100%;
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    overflow: hidden;
}

b.lnkk {
    font-weight: 600;
    color: #8f8f8f;
    cursor: pointer;
    text-decoration: underline;
}

b.lnkk:hover {
color: black;
}

span.countryCodeInput {
    min-height: 55px;
    width: 60px;
    padding: 0 10px;
    border-radius: 10px;
    border: solid 1px #cdcdcd;
    color: black;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

span.countryCodeInput img {
    width: 20px;
    height: 13px;
    border-radius: 2px;
}

span.countryCodeInput p {
    font-size: 15px;
    font-family: sans-serif;
    color: #575757;
}



/* General styling for chat container */


/* Styling for each message */
.chatMessage {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.copy-number {
    color: blue;
    cursor: pointer;
    font-weight: 500;
}

/* User's message */ 
.userMessage {
width: auto;
    height: auto;
    background: #ededed;
    border-radius: 10px;
    padding: 10px;
    align-self: flex-end;
    margin-left: auto;
    max-width: 80%;
    position: relative;
    word-wrap: break-word;
    font-family: sans-serif;
    font-size: 17px;
    font-weight: 500;
}

/* Bot's message */
.botMessage {
    background-color: #f0f0f0;  /* Light grey for bot's messages */
    color: #333;
    border-radius: 20px;
    padding: 10px;
    align-self: flex-start;
    margin-right: auto;
    max-width: 80%;
    position: relative;
    word-wrap: break-word;
}

/* Typing indicator (bot is typing...) */
.typingIndicator {
    align-self: center;
    display: flex;
    justify-content: center;
    padding: 10px;
    color: #888;
    font-style: italic;
    visibility: hidden;  /* Hidden by default */
}

/* Show typing animation */
.typingIndicator.visible {
    visibility: visible;
    animation: typingAnimation 1.5s infinite;
}

@keyframes typingAnimation {
    0% {
        content: "Processing";
    }
    33% {
        content: "Processing.";
    }
    66% {
        content: "Processing..";
    }
    100% {
        content: "Processing...";
    }
}

/* Styles for input field */





/* Styling for the loading spinner */
.loader {
    border: 4px solid #f3f3f3; /* Light grey background */
    border-top: 4px solid #3498db; /* Blue color for the spinner */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styling for "Bot is typing..." */
.typing {
    font-style: italic;
    color: #888;
    display: inline-block;
    margin-top: 5px;
}

span.groupFormTxt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

span.groupFormTxt p {
    font-family: sans-serif;
    font-size: 14px;
    color: #939393;
    text-align: center;
    max-width: 300px;
}

.modal-top-img-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.userMsgOptBox .icon {
    cursor: pointer;
    font-size: 15px;
    padding: 5px;
    background: 0;
    border-radius: 5px;
}

span.emptyMsgOptions.lic{
    border-color: #0baada;
    color: #0baada;
    background: #0baada0d;
}

.userMsgOptBox .icon:hover {
background: #fff;
}

#confirmTransText {
    font-family: sans-serif;
    font-size: 14px;
    color: #676767;
    text-align: center;
    max-width: 300px;
    font-weight: 600;
}

span.modal-top-img-span {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.chatBox {
 width: calc(100% - 20px);
    max-width: 800px;
    display: flex;
    /*justify-content: flex-start;*/
    overflow-y: scroll;
    height: 100%;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

span.modal-top-img-span img {
    width: 80px;
}

button.submitBtn:hover {
    background: #515151;
}

b.required {
    font-size: 16px;
    color: red;
    font-weight: 800;
}

.btnFormGrp {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 300px;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
}

button.loginBtn {
    height: 40px;
    width: auto;
    padding: 0 20px;
    background: black;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
}

span.toggleModeSpan:hover {
background: black;
color: #fff;
}

.main-header-inner2 {
    margin-top: 10px;
    margin-right: 10px;
    display: flex
;
    align-items: center;
    gap: 10px;
}

.main-chat-board {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
}

span.dobInputSpan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

span.dobSelectSpan {
    width: calc(100% - 20px);
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    max-height: 150px;
    overflow-y: scroll;
    position: absolute;
    top: 50px;
    box-shadow: 1px 1px 7px 2px #59595947;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

span.balanceSpan i {
    margin-left: 10px;
    cursor: pointer;
}

span.dobSelectSpan p {
    width: calc(100% - 10px);
    padding: 5px;
    font-family: sans-serif;
    font-weight: 500;
    color: black;
    cursor: pointer;
}
 
span.dobInputSpan {
width: 60px;
    max-width: 60px;
    height: 45px;
    border: solid 1px #c3c3c3;
    border-radius: 10px;
    display: flex;
    gap: 5px;
    flex-direction: row;
    justify-content: center;
    padding: 0 10px;
}

span.dobInputSpan i {
    cursor: pointer;
    color: #626262;
    font-size: 16px;
}

p.btnGetInst {
    font-size: 12px;
    font-family: sans-serif;
    color: #a4a4a4;
}

.dob-inputs-packing {
    display: flex
;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
}

input.bvnInput {
    height: 50px;
    width: 270px;
    border-radius: 10px;
    padding: 0 10px;
    border: solid 1px #d8d8d8;
    font-size: 16px;
}

span.dobSelectSpan p:hover {
background: #e8e8e8;
    border-radius: 10px;
}

span.dobInputSpan input {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 0;
    outline: 0;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
}

.emptyMsgBox {
width: calc(100% - 20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
}

span.emptyMsgOptions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: solid 1px;
    border-radius: 50px;
    font-size: 13px;
    font-family: sans-serif;
    cursor: pointer;
}

.emptyMsgBox h4 {
    font-size: 26px;
    font-family: sans-serif;
    color: black;
    text-align: center;
}

img.main-logo {
    height: 30px;
}

.main-chat-bottom {
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
    max-width: 800px;
    position: relative;
}

span.belowInputTxt {
    font-size: 13px;
    font-family: sans-serif;
    color: #9c9c9c;
    font-weight: 300;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

b.lnk {
    font-weight: 700;
    color: #1e00d3;
    cursor: pointer;
}

.main-chat-box {
    display: flex;
    align-items: flex-end;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    border: solid 1px #cdcdcd;
    border-radius: 30px;
    padding: 10px;
    background: #fff;
    box-shadow: 1px 1px 6px 1px #55555530;
    justify-content: space-between;
    gap: 6px;
}

span.file-upload-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: system-ui;
    font-size: 15px;
    cursor: pointer;
    color: #434343;
    padding: 9px 5px;
    width: calc(100% - 10px);
    border-radius: 10px;
}

span.file-upload-option:hover {
    background: #f0f0f0;
}

span.chat-input-btn.sec {
    background: black;
    color: #fff;
}

.fileUploadModal {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 1px 1px 8px 1px #3b3b3b40;
    position: absolute;
    bottom: 100px;
    left: 0;
    
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;

    transition: all 0.2s ease;
    z-index: 10;
}

.fileUploadModal.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


#uploadIcon {
    transition: transform 0.2s ease;
}

#uploadBtn.open #uploadIcon {
    transform: rotate(45deg);
}



#useVoice.recording {
    background: red;
    color: white;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#useVoice.recording p {
    color: #fff;
}

span.balanceSpan {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: black;
    border-radius: 50px;
    color: #fff;
    min-height: 40px;
    font-family: sans-serif;
    font-size: 15px;
}

span.emptyMsgOptions.lemon {
    border-color: #00cb6a;
    color: #00cb6a;
    background: #edfff7;
}

span.chat-input-btn:hover {
    background: #cbcbcb;
}

span.chat-input-btn.sec:hover {
    background: #414141;
}

textarea.chat-input {
    width: 100%;
    border: 0;
    height: 40px;
    min-height: 40px;
    padding: 10px;        /* slightly increased */
    font-family: sans-serif;
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 20px;        /* FIXED */
    resize: none;
    overflow-y: auto;
    max-height: 150px;
    transition: height 0.1s ease;
    box-sizing: border-box;
    transition: height 0.1s ease;
}

textarea.chat-input::placeholder {
font-family: sans-serif;
color: #cbcbcb;
font-size: 16px;
font-style: italic;
}

button.loginBtn:hover {
    background: #404040;
}

button.loginBtn.pri {
    color: black;
    background: #fff;
    border: solid black 1px;
}

button.loginBtn.pri:hover {
background: black;
color: #fff;    
}

i.secc {
    color: green;
    font-size: 16px;
}

span.chat-input-btn {
    min-width: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #e3e3e3;
    color: black;
    cursor: pointer;
    font-size: 19px;
}

textarea:focus{
outline: 0;
}

textarea {
  resize: none;
}

input:focus {
outline: 0;    
}

.toDoBody {
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
}

span.emptyMsgOptions.green {
    border-color: green;
    background: #f1fff1;
    color: green;
}

span.emptyMsgOptions.orage {
    border-color: orange;
    background: #fff8ea;
    color: orange;
}


.dictate-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Active recording container */
.dictate-active {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 20px;
    height: 30px;
}

.bot {
    width: auto;
    height: auto;
    background: #dfe3ff;
    border-radius: 10px;
    padding: 10px;
    align-self: flex-start;
    margin-right: auto;
    max-width: 80%;
    position: relative;
    word-wrap: break-word;
    font-family: sans-serif;
    font-size: 17px;
    font-weight: 500;
}

/* Wave bars */
.wave {
    display: flex;
    gap: 3px;
    align-items: center;
}

.wave span {
    width: 3px;
    height: 8px;
    background: #333;
    border-radius: 2px;
    animation: wave 1s infinite ease-in-out;
}

.wave span:nth-child(2) { animation-delay: 0.1s; }
.wave span:nth-child(3) { animation-delay: 0.2s; }
.wave span:nth-child(4) { animation-delay: 0.3s; }
.wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 6px; opacity: 0.4; }
    50% { height: 18px; opacity: 1; }
}



@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

/* Stop button */
.stop-btn {
    color: red;
    font-size: 18px;
    cursor: pointer;
}

/* Hide helper */
.hidden {
    display: none;
}

.dictate-active .wave span {
    background: black;
}

span.emptyMsgOptions.red {
    border-color: red;
    color: red;
    background: #fff3f3;
}

i.removePhotoIco {
cursor: pointer;
    position: absolute;
    top: 2px;
    right: 2px;
    color: #ffffff;
    /* opacity: 0.8; */
    font-size: 20px;
    background: black;
    border-radius: 50px;
}

span.chat-input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-preview {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.previeUpld {
width: 60px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    min-width: 80px;
    min-height: 80px;
    position: relative;
    margin-bottom: 10px;
}

.previeUpld img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 10px;
}

span.emptyMsgOptions.blue {
    border-color: #1939ec;
    color: #1939ec;
    background: #edf3ff;
}

span.emptyMsgOptions.purple {
    border-color: #7f11e9;
    color: #7f11e9;
    background: #7f11e90d;
}

.bot.notify {
background: #e8fbda;
}

div.chatBoard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-header-inner1 {
    margin-left: 10px;
    margin-top: 10px;
    display: flex
;
    align-items: center;
    gap: 10px;
}

.modalContent {
    width: calc(100% - 60px);
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: solid 1px #d6d6d6;
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.confirmationPopHead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

span.confirmationPopIco {
    width: 70px;
    height: 70px;
    background: #ffe2e2;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    font-size: 40px;
}

.confirmationPopHead h3 {
    font-family: sans-serif;
    color: black;
    font-size: 19px;
}

.confirmationPopHead p {
    font-family: sans-serif;
    color: #717171;
    text-align: center
}

.modalBtnGrps {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.modalBtnGrps button {
    height: 40px;
    width: 150px;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modalBtnGrps button.sec:hover {
    color: #fff;
    background: red;
}



.modalBtnGrps button:hover {
background: #d1d1d1;
}


span.toggleModeSpan {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: solid 1px grey;
    cursor: pointer;
}

.modalBtnGrps button.sec {
    background: #ffdcdc;
    color: red;
}

p,h1,h2,h3,h4 {
margin: 0;    
}

i {
display: flex;
}


.modal {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    background: #0000009c;
}

input.bvnInput:focus {
border-color: black;    
}

.form h3 {
    font-family: sans-serif;
    font-size: 23px;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.input-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

button.submitBtn {
    min-height: 55px;
    width: 300px;
    background: black;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button:disabled {
cursor: not-allowed;    
}

span.close-modal-ico-span {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
}

span.close-modal-ico-span:hover {
background: #e6e6e6;    
}

span.createAccTerms {
    font-size: 12px;
    font-family: sans-serif;
    color: #ababab;
    font-weight: 300;
    text-align: center;
}

input.countryCodeInput {
    min-height: 55px;
    width: 40px;
    padding: 0 10px;
    border-radius: 10px;
    border: solid 1px #cdcdcd;
    color: black;
    font-size: 15px;
}

input.countryCodeInput:focus {
border-color: black;    
}

input.phoneInput {
    min-height: 55px;
    width: 200px;
    padding: 0 10px;
    border-radius: 10px;
    border: solid 1px #cdcdcd;
    color: black;
    font-size: 15px;
}

input.phoneInput:focus {
border-color: black;    
}

label {
    font-family: sans-serif;
    font-size: 15px;
    color: #616161;
}

.inputs-packing {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.input-box.pin {
    align-items: center;
}


#flashContainer{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:90%;
max-width:420px;
z-index: 10000000000;
display:flex;
flex-direction:column;
gap:10px;
}

.flashMsg{
padding:14px 16px;
border-radius:10px;
color:#fff;
font-size:14px;
font-weight:500;
font-family: sans-serif;
display:flex;
align-items:center;
gap:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
animation:flashSlideIn .35s ease;
}

.flashMsg.success{
background:#22c55e;
}

.flashMsg.error{
background:#ef4444;
} 

.flashMsg.hide{
animation:flashSlideOut .35s ease forwards;
}

@keyframes flashSlideIn{
from{
opacity:0;
transform:translateY(-20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes flashSlideOut{
from{
opacity:1;
transform:translateY(0);
}
to{
opacity:0;
transform:translateY(-20px);
}
}


.voice-wave-btn{
min-width: auto;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: black;
    color: #fff;
    cursor: pointer;
    font-size: 19px;
    padding: 0 10px;
    gap: 10px;
}

.voice-wave-btn:hover{
background: #c3c3c3;
}

.voice-wave-btn p {
    font-size: 14px;
    font-family: sans-serif;
    color: #fff;
    font-weight: 500;
}

.wave {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 20px;
}

.wave span {
    width: 3px;
    height: 10px;
    background: #fff;
    animation: wave 1s infinite ease-in-out;
    border-radius: 2px;
}

.wave span:nth-child(2) { animation-delay: 0.1s; }
.wave span:nth-child(3) { animation-delay: 0.2s; }
.wave span:nth-child(4) { animation-delay: 0.3s; }
.wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 6px; opacity: 0.4; }
    50% { height: 18px; opacity: 1; }
}

.hidden {
    display: none;
}

input.inputOtp {
    height: 40px;
    width: 30px;
    border-radius: 10px;
    border: solid 1px #e0e0e0;
    text-align: center;
}

input.inputOtp:focus {
border-color: black;   
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btnLoader {
    width: 15px;
    height: 15px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 100%;
}

.modal-cont-header.left {
    justify-content: left;
}


.modal-cont-header {
    width: 100%;
    display: flex
;
    justify-content: flex-end;
    cursor: pointer;
    font-size: 16px;
}

input.invalid {
border-color: red;
background: #fff8f8;
animation: shake 0.3s;
}

#snapBtn {
display:none;      
}


div.hide,span.hide,button.hide,section.hide, p.hide, i.hide {
    display:none;
}





/* Default: light mode */
body {
    --bg-color: #fff;
    --text-color: #3e3e3e;
    --chat-bg: #fff;
    --input-bg: #fff;
    transition: all 0.3s ease;
}

body.dark-mode {
    --bg-color: #1e1e1e;
    --text-color: #fff;
    --chat-bg: #333333;
    --input-bg: #333333;
    --input-btn: black;
}

/* Use the variables */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.main-chat-box, .chat-input, .fileUploadModal {
    background-color: var(--chat-bg);
    color: var(--text-color);
}

.chat-input {
    background-color: var(--input-bg);
}

.span.chat-input-btn {
background-color: var(--input-btn); 
color: var(--text-color);
}


@media (max-width: 768px) {
span.voice-wave-btn p{
display:none;    
}

#snapBtn {
display:flex;      
}
}