/* CSS styles for chat UI */
.profile {
    justify-content: center;
}

.feed-message {
    text-align: right;
}

.feed {
    font-size: 15px;
    text-decoration: none;
    color: black;
}

.kakao-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    max-width: 500px;
}

.chat-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f7f7f7;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 95vh;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #efefef;
    border-radius: 5px 5px 0 0;
}

.chat-title {
    margin: 0;
}

.chat-image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 10px;
}

.chat-message {
    display: flex;
    margin-bottom: 10px;
}

.chat-message p {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.user-message {
    justify-content: flex-end;
}

.user-message p {
    background-color: #0d6efd;
    color: #ffffff;
}

.chat-footer {
    display: flex;
}

.chat-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-right: -5px;
}

.send-btn {
    border: none;
    background-color: #bfbfbf;
    color: black;
    padding: 10px;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}