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

body {
    height: 100vh;
}

.main-container {
    width: 100%;
    height: 100vh;
    background-color: rgb(45, 52, 59);
}


.chat-container {
    /* width: 100%;
    height: 80vh;
    background-color: rgb(45, 52, 59); */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    overflow-y: auto;
}

/* #user-image {
    width: 8%;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 10px black);
} */

#ai-image {
    width: 10%;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 10px black);
}

.user-chat-box {
    max-width: auto;
    width: 40%;
    position: relative;
    left: 40%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-chat-box {
    max-width: auto;
    width: 40%;
    position: relative;
    left: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-chat-area {
    width: 90%;
    padding: 20px;
    background-color: #000000;
    color: #f0f0f0;
    border-radius: 40px 0 40px 40px;
    box-shadow: 2px 2px 10px black;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-chat-area {
    width: 90%;
    padding: 20px;
    background-color: #333333;
    color: #f0f0f0;
    border-radius: 0 40px 40px 40px;
    box-shadow: 2px 2px 10px black;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prompt-area {
    width: 100%;
    height: 20vh;
    background-color: rgb(45, 52, 59);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    gap: 10px;
}

#prompt {
    width: 50%;
    height: 80px;
    background-color: black;
    outline: none;
    border: none;
    border-radius: 50px;
    padding: 20px;
    color: white;
    font-size: 20px;
}

.prompt-area button {
    width: 70px;
    height: 70px;
    background-color: black;
    border: none;
    border-radius: 50%;
    box-shadow: 2px 2px 10px black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.prompt-area button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prompt-area button img {
    width: 50%;
    height: 50%;
   
}

.choose-image {
    width: 30%;
    border-radius: 30px;
}

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

.btn-close.btn-close-white {
    background-color: #007bff !important; 
    border-radius: 50%;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.146a.5.5 0 0 1 .708 0L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}



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

    .ai-chat-box {
        width: 80%;
    }
}