#gfc-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

/* チャットのログ表示エリア */
#gfc-chat-log {
    height: 450px;
    overflow-y: auto;
    border: 1px solid #f0f0f0;
    padding: 15px;
    background: #fdfbf7; /* 占いっぽい落ち着いた背景色 */
    margin-bottom: 15px;
    border-radius: 8px;
}

/* 吹き出しの共通設定 */
.gfc-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 18px;
    line-height: 1.6;
    font-size: 15px;
    word-break: break-all;
}

/* ユーザー（右側・青系） */
.gfc-role-user {
    background-color: #e1f5fe;
    color: #0277bd;
    margin-left: auto;
    text-align: left;
    max-width: 75%;
}

/* AI・占い師（左側・グレー系） */
.gfc-role-model {
    background-color: #f5f5f5;
    color: #333333;
    margin-right: auto;
    text-align: left;
    max-width: 75%;
}

/* 入力エリア */
#gfc-chat-input-area {
    display: flex;
    gap: 10px;
}

#gfc-user-message {
    flex: 1;
    height: 60px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;
    font-size: 14px;
}

#gfc-send-message {
    padding: 0 20px;
    background: #6200ea;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#gfc-send-message:hover {
    background: #3700b3;
}

#gfc-loading {
    text-align: center;
    color: #6200ea;
    font-weight: bold;
    margin-top: 10px;
}