
@font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.eot");
    src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
         url("../fonts/Flaticon.woff2") format("woff2"),
         url("../fonts/Flaticon.woff") format("woff"),
         url("../fonts/Flaticon.ttf") format("truetype"),
         url("../fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
      font-family: "Flaticon";
      src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
    }
  }
  
  [class^="flaticon-"]:before, [class*=" flaticon-"]:before,
  [class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-family: Flaticon;
          font-size: 30px;
  font-style: normal;
  }
  
.flaticon-microphone:before { content: "\f100"; }

*{margin: 0;padding: 0;box-sizing: border-box;}
body{font-family: 'poppins';background: #ffffff;}
header {
    height: 60px;
    background: rgb(0, 102, 255);
    color: white;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 10px 0 5px #b9b7b7;
    width: 100%;
    position: fixed;
    z-index: 2;
    font-weight: bold;
    letter-spacing: 0.25rem;
}
.main {
    width: 100%;
    float: left;
    margin-top: 60px;
    padding: 30px 0;
}
.main button {
    background: #ff0000;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px #666;
    position: absolute;
    right: 20px;
    bottom: 100px;
    border: none;
    margin-bottom: 100px;
    margin-left:auto ;
    margin-right: auto;
    color: #fff;
    cursor: pointer;
}
.main button:focus{outline: none;}
.container {
    width: 85%;
    margin: 0 auto;
}
.user-area, .chatbot-area {
    width: 20%;
    height: calc(100vh - 60px);
    margin-right: 15px;
    display: flex;
    align-items: center;
    position: fixed;
    left: 80px;
    z-index: 99999;
}
.chatbot-area {
    float: right;
    right: 80px;
    left: auto;
}
.user-area img, .chatbot-area img {
    width: 100%;
}
.user-area img{left: 0;}
.chatarea-main {
    width: 42%;
    margin: 0 auto;
}
.chatarea-outer {
    width: 100%;
    float: left;
}
.chatbot-area .chatarea-main{float: left;}
.chatarea.user {
    float: right;
    width: 40%;
    padding: 20px 0;
}

.chatarea-inner {
    float: left;
    width: 60%;
    padding: 10px;
    color: #fff;
    position: relative;
    margin: 5px 0;
}.chatarea-inner.user {
    background: linear-gradient(to right, #9b22a4, #d13bff); /* Magenta to Pink */
}

.chatarea-inner.chatbot {
    background: linear-gradient(to right, #2a6ebd, #4a9ef1); /* Structural Blue to Shining Blue */
    float: right;
}

.chatarea-inner.user:before {
    content: '';
    position: absolute;
    border-right: 20px solid #9b22a4; /* Magenta color */
    border-top: 20px solid transparent;
    border-bottom: 0px solid transparent;
    bottom: 0;
    left: -20px;
}

.chatarea-inner.chatbot:before {
    content: '';
    position: absolute;
    border-left: 20px solid #2a6ebd; /* Structural Blue color */
    border-top: 20px solid transparent;
    border-bottom: 0px solid transparent;
    bottom: 0;
    right: -20px;
}

.chatbot-area .chatarea-inner{float: left;}

#robot-pic, #user-pic{
    border-radius: 50%;
}
/* Footer Styling */
.footer {
    background-color: #fff;
    color: #333;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    /* Ensure footer stays at the bottom */
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

/* Logo Styling */
.footer-logo .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* Text Styling */
.footer-text p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.footer-text .emoji {
    font-size: 20px;
    margin-left: 5px;
}

#mic {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
    justify-content: center;
}
