/* 전체 스타일링 */
body {
    font-family: Arial, sans-serif;
    /* max-width: 400px;
    margin: 10px;
    padding: 10px; */
    /* background-color: #f0f0f0; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* height: 500px; */
}
/* 채팅창 스타일링 */
#chatbox {
    max-width: 400px;
    /* height: 400px; */
    border: 1px solid #ccc;
    border-radius: 20px;
    /* overflow: hidden;  */
    padding: 10px;
    margin-bottom: 5px;
    background-color: #fff;
}
/* 메시지 스타일링 */
.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}
.user {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
}
.bot {
    background-color: #28a745;
    color: #fff;
    align-self: flex-start;
}
/* 입력창 스타일링 */
#inputMessage {
    /* width: calc(110% - 20px); */
    width: 355px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 5px;
}
#send-button {
    padding: 10px 15px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
    transition: background-color 0.1s ease; /* 커서 갖다대면 배경색 바뀌는 시간 */
}
#send-button:hover { /*커서 갖다대면 바뀌는 거*/
    background-color: #798da3;
}
.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;
}