@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

body {
    font-size: 15px;
    margin: 0;
    margin-top:30px;
    font-size: 15px;
    background-size: cover;
    background-image: url(images/light-bg2.jpg);
    font-family: "Space Grotesk", sans-serif;
}
#main{
    display:none;
}
#aiva{
    text-align: center;
    height: 100vh;
}
#aiva img{
    height: 90%;
    width: auto;
    opacity: 0.7; /* Adjust opacity value as needed (0.0 to 1.0) */
}
#aiva div{
    height: 10%;
    color: #9D69ED;
    font-size: 2rem;
}
#aiva div a{
    margin-left: 50px;
    background-color: #A402F1;
    color: rgba(255,255,255,0.7);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    border-radius: 20px;
}
#main{
    padding-top: 50px;
}
.bg-dark{
    background-color: #FFF !important;
}
.logo{
    width: 150px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
/* Ensure the chat-container takes up the full page height */
.chat-container {
    min-height: 100vh;
}

/* Set a fixed height for the chat-area and add a scroll bar */
#chat-area {
    height: 300px; /* Adjust the height as needed */
    overflow-y: auto;
}
#message-input{
    background-image: url(images/paper-plane-icon.png);
    background-repeat: no-repeat;
    background-size: auto 30px;
    background-position: calc(100% - 10px) center; /* Adjusted background position */
}

.text-user{
    color: lightslategrey;
}
.text-ai{
    color: #9D69ED;
}
a{
    text-decoration: underline;
    color: #333;
}
a:hover{
    text-decoration: none;
    color: #333;
}
/* CSS for smooth scroll */
.smooth-scroll {
    scroll-behavior: smooth;
}
#mention-suggestions {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: white;
}

#mention-suggestions {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: white;
    bottom: -10px; /* Position above the input field */
    cursor: pointer;
    padding: 2px;
    box-sizing:border-box;
    z-index: 9999; /* Set a high z-index value to ensure it appears above the iframe */
    max-height: 200px; /* Set a maximum height for the div */
    overflow-y: auto; /* Enable vertical scroll when content exceeds the height */
}

#mention-suggestions div {
    background-color: rgba(0,0,0,0.05);
    margin: 2px;
    padding: 5px 15px 5px 15px;
    box-sizing:border-box;
}
#mention-suggestions div:hover {
    background-color: rgba(0,0,0,0.1);

}
.table-responsive{
    margin-top:5px;
}
.talk-bubble {
    position: relative;
    background-color: #9D69ED;
    border-radius: 10px;
    padding: 5px 15px 5px 15px;
    color: #fff;
    margin-left: 10px; /* Adjust margin as needed */
}

.talk-bubble::before {
    content: '';
    position: absolute;
    top: 50%; /* Position vertically at the middle */
    left: -15px; /* Adjust the distance from the left side */
    margin-top: -10px; /* Adjust the vertical position */
    border-width: 10px;
    border-style: solid;
    border-color: transparent #9D69ED transparent transparent; /* Color of the pointer */
}
.talk-bubble a {
    color: #fff;
}
.model-title{
    font-size: 20px;
    margin-top: 5px;
}
.chart{
    width: 25px;
    height: auto;
}
.me-2{
    margin-right: 10px;
}
.text-end{
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
}
.su-hide{
    display: none;
}