/* 전체적인 스타일링 */
html {
    background-color: #fcf0e5;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
body {
    background-color: #fbfbfb;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid #dc9c25;
    margin: 0px auto;
}
/* 모바일 기기에서 적용될 스타일 */
@media screen and (max-width: 800px) {
    body {
        margin: 2% auto;
        width: 53vh;
        /* height: 85vh; */
    }
    #chat-window {
        width: 85%;
        height: 60%;
        background-color: #fffaf0;
        margin: 0% auto;
        padding: 1rem;
        overflow-y: scroll;
        border: 1px dotted #dc9c25;
        border-radius: 5px;
    }
    /* 입력창 스타일링 */
    #input-window {
        width: 90%;
        margin: 1% auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .kakao-ad {
        display:flex;
        justify-content: center;
        align-items: center;
        min-width: 85%;
        min-height: 12px;
    }
} 
/* web */
@media screen and (min-width: 800px) {
    body {
        margin-top: 1%;
        width: 32rem;
        height: 43rem;
    }
    /* 채팅창 스타일링 */
    #chat-window {
        width: 30rem;
        height: 54%;
        font-size: 1.3rem;
        background-color: #fffaf0;
        margin: 1% auto;
        padding: 3px;
        overflow-y: scroll;
        border: 1px dotted #dc9c25;
        border-radius: 5px;
    }
    #input-window {
        width: 30rem;
        margin: 0.5rem auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .kakao-ad {
        display:flex;
        justify-content: center;
        align-items: center;
        min-width: 31rem;
        min-height: 12px;
        border: 1px solid #553e13;
    }
}
.healthcat img {
    margin-right: 1rem;
}
h1 {
    margin:3%;
    color: #fbab16;;
}
#caution {
    text-align: center;
    color: #a76e05;
    font-size: 0.9rem;
}
.chat-box {
    color: #543702;
}
.assistant {
    background-color: #ffca0a;
    border-radius: 10px;
    padding: 7px;
    margin-top: 5px;
    margin-bottom: 13px;
    margin-right: 30px;
    margin-left: 7px;
}
.message {
    background-color: #fdedb6;
    border-radius: 10px;
    padding: 7px;
    margin-bottom: 13px;
    margin-right: 7px;
    margin-left: 30px;
}
.loading-icon {
    display: none;
    position: fixed;
    top: 7rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.loading-icon i {
    font-size: 2rem;
    color: #fac928;
} 
  
/* 입력창 스타일링 */
#message-input {
    flex: 1;
    margin: 3%;
    padding: 10px;
    border: 1px solid #dc9c25;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 16px;
}
#send-button {
    width: 4rem;
    padding: 11px;
    background-color: #ffca0a;
    color: #543702;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
