#chatbot-toggle {
    position: fixed; bottom: 20px; right: 20px; background: #0073aa; color: #fff;
    width: 50px; height: 50px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; cursor: pointer; z-index: 9999;
}
#sportsclub-chatbot {
    position: fixed; bottom: 80px; right: 20px; width: 300px; max-height: 400px;
    background: #fff; border: 1px solid #ccc; border-radius: 8px; display: flex;
    flex-direction: column; z-index: 9999;
}
#sportsclub-chatbot.hidden { display: none; }
#chat-header { background: #0073aa; color: #fff; padding: 10px; border-radius: 8px 8px 0 0; }
#chat-close { float: right; cursor: pointer; }
#chat-window { flex: 1; padding: 10px; overflow-y: auto; }
#chat-options { padding: 10px; border-top: 1px solid #ccc; }
.chat-option { background: #f1f1f1; margin-bottom: 5px; padding: 5px; cursor: pointer; border-radius: 4px; }
.chat-option:hover { background: #e2e2e2; }
