html{
    height: 100vh;
    display: flex;
}


body {
    max-height: 100vh;
    width: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    height: 100vh;
    width: 95%;
    background-color: white;
    /* border-radius: 8px; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /* padding: 2% 2% 2% 2%; */
}

.chat-section, .summary-section {
    padding: 20px;
    /* height:80vh */
}

.chat-section {
    width: 70%;
    /* border-right: 0.1px solid #ccc; */
    /* box-shadow: 13px 0 25px 10px rgba(0, 0, 0, 0.196) */
}

.summary-section {
    padding-left: 30px;
    width: 30%;
}

#chat-window {
    /* display: flex; */
    flex-direction: column;
    height: 85vh;
    overflow-y: auto;
    margin-bottom: 10px;
    /* border: 1px solid #ccc; */
    padding: 10px;
    border-radius: 5px;
}

.message-container{
    display: flex;
    white-space: break-spaces;
}
.message {
    flex-direction: row;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 8px 6px 20px 0px rgba(0, 0, 0, 0.10);
}   


/* .message:only-of-type:hover{
    box-shadow: 8px 6px 20px 0px rgba(7, 7, 231, 0.26);
} */

.bot-message {
    max-width: 95%;
    background-color: #ffffff;
    align-self: flex-start; /* Align bot messages to the left */
    text-align: left; /* Align text to the left */
    box-shadow: 8px 6px 20px 0px rgba(26, 231, 7, 0.178);
    /* padding: 8px 12px;
    /* border-radius: 5px; */
    /* max-width: 80%;  */
}
.bot-message:hover{
    /* box-shadow: 8px 6px 20px 0px rgba(7, 7, 231, 0.26); */
}

.user-message {
    max-width: 95%;
    background-color: #feffff;
    flex-direction: column;
    align-self: flex-end;  /* Align user messages to the right */
    text-align: right; /* Align text to the right */
    box-shadow: 8px 6px 20px 0px rgba(7, 7, 231, 0.26);
    /* padding: 8px 12px;
    /* border-radius: 5px; */
    /* max-width: 80%;  */
    /* align-self: flex-end; */
}
.user-message:hover{
    /* box-shadow: 8px 6px 20px 0px rgba(7, 7, 231, 0.26); */
}
.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
}

#input-window{
    display: flex;
    border-radius: 5px;
    box-shadow: 0px 1px 12px 6px rgba(8, 0, 0, 0.306);
    border: 0px solid #ccc;
    /* position: fixed; */
    bottom: 10px;

}


#user-input {
    flex : 1;
    width: 85% ;
    padding: 10px;
    border-radius: 5px;
    border: 0px solid #cccccc;
    margin-right: 10px;
}

.input::selection{
    border: 0px solid #cccccc;
}

#send-btn {
    width: 50px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor:pointe;
    right: 0px ;
    
}

button:hover{
    cursor: pointer;  
}
