*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    width: 100%;
    height: 100vh;

}

.chat-container{
    width: 100%;
    height: 80%;
    background-color: rgb(33, 46, 57);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: large;
    overflow: auto;
}

.user-chat-box{
    width: 60%;
    position: relative;
    left: 40%;
}
.ai-chat-box{
    width: 60%;
    position: relative;
}
.user-chat-area{
    width: 90%;
    padding: 20px;
    background-color: black;
    color: whitesmoke;
    border-radius: 40px 0px 40px 40px;
    box-shadow: 2px 2px 10px black;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.chooseImg{
    width: 30%;
    border-radius: 30px;
}
.ai-chat-area{
    width: 90%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.603);
    position: relative;
    left: 10%;
    color: whitesmoke;
    border-radius: 0px 40px 40px 40px;
    box-shadow: 2px 2px 10px black;
}

#userImage{
    position: absolute;
    right: 0;
    filter: drop-shadow(2px 2px 10px black);
}
#aiImage{
    position: absolute;
    left: 0;
    filter: drop-shadow(2px 2px 10px black);
}
.prompt-area{
    width: 100%;
    height: 20%;
    background-color: rgb(33, 46, 57);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.prompt-area input{
    width: 50%;
    height: 50px;
    background-color: black;
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 50px;
    color: white;
    font-size: large;
    box-shadow: 2px 2px 10px black;
}

.prompt-area button{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background-color: black;
    box-shadow: 2px 2px 10px black;
    cursor: pointer;
    transition: all 0.5s;
}

#submit{
    padding-top: 6px;
    padding-right: 4px;
}
#image{
    padding-top: 1px;
    padding-right: 2px;
    
}
#submit:hover{
    background-color: rgb(33, 46, 57);
}
#image:hover{
    background-color: rgb(33, 46, 57);
}

.load{
    filter: drop-shadow(2px 2px 10px black);
}

.choose{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

@media  (max-width : 600px) {
    .user-chat-box{
        width: 80%;
        left: 20%;
    }
    .ai-chat-box{
        width: 80%;
        
    }
}

