::-webkit-scrollbar {
    display: none;
}

.kakao-ad ins {
    display: block !important;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin: 0;
    padding: 0; */
    /* font-family: Arial, sans-serif;
    font-size: 14px; */
}

#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.chat-box {
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow-y: scroll;
    height: 300px;
}

.chat-message {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.chat-message p {
    margin: 0;
    padding: 0;
}

.chat-input {
    display: flex;
    margin-top: 20px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.chat-input button {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #3e8e41;
}

.assistant {
    font-weight: bold;
    color: blue;
}

.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;
}

/* 기존 CSS에 추가 */
#kakao-ad-container {
    /* position: fixed; */
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kakao-ad ins {
    display: block !important;
}

#btn {
    width: 50px;
}

.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {
    margin-top: 5px;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

button {
    width: 100%;
}

#lotti {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 768px) {
    .chat-container {
        max-width: 100%;
        padding: 10px;
    }

    .chat-box {
        height: 250px;
    }

    .intro-container img {
        width: 75%;
        min-width: 200px;
    }
}
