/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body background color */
body {
    background-color: #f4f4f4;
}


.intro-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-container img{
    width: 50%;
    min-width: 300px;
}

/* Chat container styles */
.chat-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

/* Heading styles */
h1 {
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 10px;
}

/* Chat box styles */
.chat-box {
    max-height: 300px;
    overflow-y: scroll;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


/* Style chat messages (assistant responses) with a comfortable color (e.g., blue) */
.assistant {
    color: blue;
}


/* Message styles */
.message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.system {
    background-color: #f0f0f0;
}

/* Input container styles */
.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kakao-ad{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-width: 350px;
    min-height: 200px;

}

.input-box {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#sendButton {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Input button hover effect */
#sendButton:hover {
    background-color: #0056b3;
}
