	body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: -1;
}


.right-circular-image {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 200px;       /* Increase from 100px to 150px for a larger size */
    height: 200px;      /* Increase from 100px to 150px for a larger size */
    border-radius: 50%;
    border: 3px solid #ff8812dc;
    z-index: 2;
}

.left-vertical-image {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0)); /* Gradient from full white at the top to transparent at the bottom */
    opacity: 0.77;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* Adjusted gradient stops */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* For Webkit browsers */
}

.answernet-logo {
    position: fixed;
    top: 90%; /* Mid of the page vertically */
    right: -300px; /* Initial position outside of the screen to the right */
    width: auto;
    height: 100px; /* Adjust height as needed */
    border-radius: 50%;
    border: 0px solid #ff8812dc; /* Defined border */
    opacity: 0.4; /* Slightly translucent */
    transition: right 1s; /* Animation duration */
    z-index: 2; /* Ensure it's above most other elements */
}


@keyframes swoopIn {
    0% {
        right: -300px; /* Starts off the screen */
    }
    100% {
        right: 10px; /* Adjust this to the desired end position to the right of the chatbot */
    }
}

.answernet-logo {
    animation: swoopIn 1s forwards; /* Apply the animation */
}


.message {
    margin: 10px 0;
    padding: 5px;
    border-radius: 10px;
}

.message-verifai {
    background-color: #e6f7ff;
    color: #002C61;
}

.message-me {
    background-color: #ffc68ddc;
    color: #333;
}

.sender-label {
    font-weight: bold;
    margin-right: 5px;
}


.chat-container {
    background-color: #ffffff5e;
    border-radius: 15px;
    overflow: hidden;
    width: 500px;
    z-index:3;
    max-width: 90%;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    border: 5px solid #010d6827;
}

.logo {
    display: block;
    width: 85%;
    margin: 10px auto;
    padding: 10px; /* padding to create space between the image and the border */
    border: 5px solid #ff8812dc; /* thick, dark gray border */
    border-radius: 15px; /* rounded corners for the border */
    opacity: 1;
}

.logo-overlay {
    position: relative;
    width: 70%;
    margin: 15px auto;
   
}


.chat-box {
    background-color: #010d6827;
    padding: 15px;
    position: relative;
}

.chat-output {
    height: 325px;
    overflow-y: auto;
    border: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: inset 0px 3px 10px rgba(0,0,0,0.05);
}

#userInput {
    width: calc(100% - 80px);
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    outline: none;
    transition: box-shadow 0.3s ease;
}

#userInput:focus {
    box-shadow: 0px 3px 15px rgba(0,0,0,0.1);
}

#sendBtn {
    background-image: url('images/Screen Shot 2023-10-08 at 11.54.06 PM.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #FFD700;
    color: #002C61;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 20px;
    margin-left: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
}

#sendBtn:hover {
    background-color: #e4b200;
}