/* InquiryChat カスタムスタイル */

/* チャットバブルのアニメーション */
#chat-messages > div {
    animation: fadeIn 0.15s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* カテゴリボタン */
.category-btn {
    min-height: 80px;
    border-width: 2px;
    transition: all 0.15s ease;
}
.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* テーブルの行ホバー */
.table-hover tbody tr:hover {
    cursor: pointer;
}

/* ナビゲーションの影 */
.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
