body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ecd8d1;
}

.chat-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.chat-bubble {
    background-color: #f1f1f1;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.user-bubble {
    background-color: #e2f7fd;
    text-align: right;
}

.bot-bubble {
    background-color: #f1f1f1;
    text-align: left;
}

.chat-input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.chat-input {
    flex: 1;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.send-button {
    padding: 8px 16px;
    background-color: #8141ca;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.send-button:hover {
    background-color: #af8ada;
}

.intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-container img {
    width: 40%;
    min-width: 300px;
}

.input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto; /* 中央揃えにする */
    padding: 10px; /* 内側の余白を設定 */
    max-width: 300px; /* コンテナの最大幅を設定 */
    width: 100%; /* コンテナの幅を親要素に合わせて調整 */
}

.label {
    text-align: left;
    width: 50%; /* ラベルの幅を固定する */
}

.input-group input,
.input-group select {
    width: 50%; /* 入力フィールドの幅を固定する */
    text-align: center; /* テキスト入力フィールドのテキストを右揃えにする場合 */
}

#loader {
    font-size: 25px;
    text-align: center;
}

.ads {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-width: 350px;
    min-height: 200px;
}