 body{
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}
.chat-container{
    width: 100%;
    max-width: 400px;
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 0 10px ;
    overflow: hidden;
    flex-direction: column;
    height: 90vh;
}
.chat-header{
    background-color: #4a90e2;
    color: white;
    padding: 15px;
    text-align: center;
}
.chat-header h1{
    margin: 0;
    font-size: 1.5rem;
}
.chat-message{
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}
.message{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.message-content{
    padding: 10px;
    border-radius: 5px;
    max-width: 70%;
} 
.user-message{
    flex-direction: row-reverse;
}
.user-message .message-content{
    background-color: #4a90e2;
    margin-right: 10px;
}
.bot-message .message-content{
    background-color: #3a3a3a;
    margin-left: 10px;
}
.profile-image{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.chat-input-container{
    display: flex;
    padding: 15px;
    background-color: #2a2a2a;
}
#user-input{
    flex-grow: 1;
    padding: 10px;
    border-radius: 1px solid #4a4a4a;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #3a3a3a;
    color: white;
}
#send-button{
    padding: 10px 20px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 1rem;
}
#send-button:hover{
    background-color: #3a7bc8;
}
#send-button:disabled{
    background-color: #2a5a8a;
    cursor: not-allowed;
}

   
@media (max-width: 480px) {
    .chat-container{
        height: 100vh;
        border-radius: 0;
    }
}


/*scrollbar styles*/
::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-track{
    background: #2a2a2a;
}

::-webkit-scrollbar-thumb{
    background: #4a4a4a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover{
    background: #5a5a5a;
}