*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body{
    width: 100%;
    height:100vh;
}
.chat{
    width: 100%;
    height: 80%;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    gap:20px;
    overflow: auto;
}

.userchat{
    width: 60%;
  position: relative;
    left:40%;
    padding: 20px;
    padding-right: 10px;
}
.uca{
width: 90%;
padding: 20px;
background-color:#1a2a3a;
color: whitesmoke;
border-radius: 40px 0px 40px 40px;
box-shadow: 2px 2px 2px aqua;
display: flex;
flex-direction: column;
gap:10px;

}
.chooseimg{
    width: 30%;
}
.aichat{
    width: 60%;
    position: relative;
    padding: 20px;
}
.aca{
    width: 90%;
    padding: 20px;
    background-color:#7fc7d9;
    position: relative;
    left:10%;
    color: whitesmoke;
border-radius: 40px 0px 40px 40px;
box-shadow: 2px 2px 2px aquamarine;

}
#ui{
    position: absolute;
    right: 0;
    border-radius: 50%;
    filter: drop-shadow(3px 3px 4px rgb(193, 187, 187));
}
#ai{
    position: absolute;
    left:0;
    filter: drop-shadow(3px 3px 4px brown);
}
.promptarea{
    width: 100%;
    height: 20%;
    background-color:whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.promptarea input{
    height: 80px;
    width: 40%;
    font-size: 24px;
    background-color:black;
    outline: none;
    border: none;
    border-radius: 40px;
    padding: 20px;
    color: whitesmoke;
    box-shadow: 2px 2px 10px black;
    
}
.promptarea button{
    width: 70px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 2px 2px 10px whitesmoke;
    transition: all 0.5s;
}
.promptarea button:hover{
    background-color: wheat;

}
.load{
    filter: drop-shadow(3px 3px 4px brown);
    height:30px;
    aspect-ratio: 1;
    border-radius: 50%;
}