/*
Theme Name: AskSean AI
Theme URI: https://asksean.ai
Author: Sean Hakes
Author URI: https://asksean.ai
Description: AI-powered assistant theme for AskSean.ai
Version: 1.0.0
License: GPL v2 or later
Text Domain: asksean-ai
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.asksean-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.asksean-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
}

.asksean-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.asksean-hero p {
    font-size: 1.2em;
    opacity: 0.95;
}

.asksean-chat-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
}
/* Hide ALL LLM mentions everywhere */
.powered-by,
.message-model,
.ai-models,
.model-badge {
    display: none !important;
}
.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 25px !important;
}