body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    
}

#chatContainer {
    max-width: 500px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#chatArea {
    min-height: 200px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 20px;
}

.user {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
    text-align: right;
}

.user-bubble {
    text-align: center;
}

.bot-bubble {
    background-color: #28a745;
    color: #fff;
}

#inputContainer {
    display: flex;
    align-items: center;
    padding: 15px;
}

#messageInput {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#sendButton {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#sendButton:hover {
    background-color: #0056b3;
}


.intro-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-container img{
    width: 50%;
    min-width: 300px;
}

#loader{
    font-size: 25px;
    text-align: center;
}

.kakao-add{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-width: 350px;
    min-height: 200px;
}