* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

ul {
    list-style-type: none;
}

.warning {
    color: red
}
.container {
    height: 100vh;
    background-color: #f5f5f5;
    overflow: hidden;
}

header h1{
    text-align: center;
    padding: 10px 0
}

.chat-container {
    max-width: 700px;
    background-color: #ffff;
    margin: 60px auto;
    border-radius: 10px;
}

.chat-container .chat-box {
    height: 510px;
    overflow-y: auto;
    padding: 20px;
}
.chatbox {
    height: 500px;
    overflow-y: auto;
}

.chatbox .chat {
    display: flex;
    font-size: 0.8rem;
}

.chatbox .chat-response {
   justify-content: flex-end;
}

.chatbox .chat-incoming {
    position: relative;
}

.copy{
    position: absolute;
    font-size: 0.8rem;
    cursor: pointer;
    top: 1.5px;
    left: 70%;
}

.chatbox .chat-incoming p{
    background-color: #f1f0f0;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 10px;
    max-width: 70%;
    min-width: 500px;
    overflow: break-word;
}

.chat-response p {
    background-color: #f1f0f0;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 10px;
    align-self: flex-end;
    max-width: 70%;
    overflow-wrap: break-word;
    
}

.chat-incoming p a:hover {
    text-decoration: underline;
}
.chat-input {
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
}

.chat-input input {
    width: 80%;
    padding: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #f8f9fa
}

.chat-input button {
    width: 20%;
    background-color: #4dabf7;
    color: white;
    border: none;
    cursor: pointer;
}

