/* AI客服系统 - 浅色主题 */

:root[data-theme="light"] {
    /* 主题标识 */
    --theme-name: "浅色主题";
    --theme-description: "简洁的浅色主题，适合日间使用";
    
    /* 背景和文本 */
    --background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 25%, #e8f5e8 50%, #fff3e0 75%, #fce4ec 100%);
    --text-color: #212529;
    --text-color-secondary: #6c757d;
    --text-color-muted: #adb5bd;
    
    /* 卡片和容器 */
    --card-background: #ffffff;
    --card-background-hover: #f8f9fa;
    --card-background-light: #ffffff;
    --card-background-chat: #ffffff;
    --card-background-header: #ffffff;
    --card-background-input: #ffffff;
    --card-background-content: #f8f9fa;
    
    /* 边框颜色 */
    --border-color: #dee2e6;
    --border-color-hover: #ced4da;
    --border-color-input: #ced4da;
    --border-color-focus: #FF8A65;
    --border-color-divider: #e9ecef;
    
    /* 毛玻璃效果 - 浅色主题不使用毛玻璃 */
    --backdrop-filter: none;
    --backdrop-filter-light: none;
    --backdrop-filter-mini: none;
    
    /* 阴影效果 */
    --shadow-card: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-button: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-button-hover: 
        0 4px 8px rgba(255, 138, 101, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-input: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-input-focus: 0 0 0 3px rgba(255, 138, 101, 0.2);
    --shadow-avatar: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-ai-avatar: 0 2px 8px rgba(255, 183, 77, 0.3);
    --shadow-user-message: 0 2px 8px rgba(255, 138, 101, 0.3);
    --shadow-notification: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-user-info: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* 按钮样式 - 暖色调 */
    --button-primary-bg: linear-gradient(135deg, #FF8A65, #FF7043);
    --button-primary-color: white;
    --button-primary-hover: linear-gradient(135deg, #FF7043, #FF5722);
    --button-secondary-bg: #ffffff;
    --button-secondary-color: #212529;
    --button-secondary-hover: #f8f9fa;
    --button-danger-bg: #dc3545;
    --button-danger-hover: #c82333;
    
    /* 输入框样式 */
    --input-background: #ffffff;
    --input-background-focus: #ffffff;
    --input-border: #ced4da;
    --input-border-focus: #FF8A65;
    --input-placeholder: #6c757d;
    
    /* 状态颜色 */
    --status-online: #28a745;
    --status-offline: #dc3545;
    --status-reconnecting: #ffc107;
    --status-error: #dc3545;
    
    /* 用户头像渐变 - 暖色调 */
    --avatar-gradient: linear-gradient(135deg, #FF8A65, #FF7043, #FF5722);
    --avatar-shadow: 0 2px 8px rgba(255, 138, 101, 0.3);
    
    /* AI头像渐变 - 暖色调 */
    --ai-avatar-gradient: linear-gradient(135deg, #FFB74D, #FF9800, #F57C00);
    --ai-avatar-shadow: 0 2px 8px rgba(255, 183, 77, 0.3);
    
    /* 消息气泡样式 - 对比色渐变 */
    --user-message-bg: linear-gradient(135deg, #ffe0b2, #ffcdd2);
    --user-message-color: #212529;
    --user-message-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --ai-message-bg: #f8f9fa;
    --ai-message-color: var(--text-color);
    
    /* 通知样式 */
    --notification-bg: #ffffff;
    --notification-border: #dee2e6;
    --notification-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --notification-success-border: #28a745;
    --notification-error-border: #dc3545;
    --notification-info-border: #17a2b8;
    
    /* 加载动画 */
    --loading-bg: #f8f9fa;
    --loading-border: #dee2e6;
    --loading-text: #6c757d;
    --loading-spinner-border: #dee2e6;
    --loading-spinner-border-top: #007AFF;
    
    /* 错误和成功消息 */
    --error-bg: #f8d7da;
    --error-border: #f5c6cb;
    --error-color: #721c24;
    --success-bg: #d4edda;
    --success-border: #c3e6cb;
    --success-color: #155724;
    
    /* 思考动画 */
    --thinking-color: #FF8A65;
    
    /* 背景动画 - 浅色主题不使用背景动画 */
    --background-animation: none;
}

/* 直接覆盖body样式 */
body[data-theme="light"] {
    background: linear-gradient(135deg, 
        #87CEEB 0%, 
        #98FB98 25%, 
        #F0E68C 50%, 
        #FFB6C1 75%, 
        #DDA0DD 100%) !important;
    color: #212529 !important;
}

body[data-theme="light"] .center-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #dee2e6 !important;
}

body[data-theme="light"] .action-button.login-btn {
    background: linear-gradient(135deg, #FF8A65, #FF7043);
    color: white;
}

body[data-theme="light"] .action-button.login-btn:hover {
    background: linear-gradient(135deg, #FF7043, #FF5722);
}

body[data-theme="light"] .action-button.register-btn {
    background: #ffffff;
    color: #212529;
    border: 1px solid #ced4da;
}

body[data-theme="light"] .action-button.register-btn:hover {
    background: #f8f9fa;
}

/* 主题切换器样式 */
body[data-theme="light"] .theme-switcher {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 10000 !important;
}

body[data-theme="light"] .theme-toggle-btn {
    background: #ffffff !important;
    color: #212529 !important;
    border: 1px solid #dee2e6 !important;
}

body[data-theme="light"] .theme-dropdown {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
}

body[data-theme="light"] .theme-dropdown-header h3 {
    color: #212529 !important;
}

body[data-theme="light"] .theme-dropdown-close {
    color: #6c757d !important;
}

body[data-theme="light"] .theme-item {
    color: #212529 !important;
}

body[data-theme="light"] .theme-item:hover {
    background: #f8f9fa !important;
}

body[data-theme="light"] .theme-item.active {
    background: linear-gradient(135deg, #FF8A65, #FF7043) !important;
    color: white !important;
}

body[data-theme="light"] .theme-item-name {
    color: inherit !important;
}

body[data-theme="light"] .theme-item-description {
    color: inherit !important;
}

/* 箭头按钮样式 */
body[data-theme="light"] .arrow-button {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
}

body[data-theme="light"] .arrow-button:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}


/* 登录页面样式 */
body[data-theme="light"] .login-card {
    background: var(--card-background);
    backdrop-filter: var(--backdrop-filter);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .page-title {
    color: var(--text-color);
    text-shadow: var(--shadow-sm);
}

body[data-theme="light"] .page-subtitle {
    color: var(--text-color-secondary);
}

/* 注册页面样式 */
body[data-theme="light"] .register-card {
    background: var(--card-background);
    backdrop-filter: var(--backdrop-filter);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

/* 聊天页面样式 */
body[data-theme="light"] .chat-card {
    background: var(--card-background);
    backdrop-filter: var(--backdrop-filter);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .chat-header {
    background: var(--card-background-header);
    border-bottom: 1px solid var(--border-color-divider);
}

body[data-theme="light"] .chat-title {
    color: var(--text-color);
}

body[data-theme="light"] .chat-messages {
    background: var(--card-background-content);
}

body[data-theme="light"] .message-text {
    color: var(--text-color);
}

body[data-theme="light"] .user-message .message-content {
    background: var(--user-message-bg);
    color: var(--user-message-color);
    box-shadow: var(--user-message-shadow);
    border-radius: 18px 18px 4px 18px;
    padding: 16px 20px;
}

body[data-theme="light"] .ai-message {
    background: none;
    color: var(--text-color);
    border: none;
    padding: 12px 0;
    box-shadow: none;
}

body[data-theme="light"] .chat-input {
    background: var(--input-background);
    border: 1px solid var(--input-border);
    color: var(--text-color);
}

body[data-theme="light"] .chat-input:focus {
    border-color: var(--input-border-focus);
    box-shadow: var(--shadow-input-focus);
}

body[data-theme="light"] .send-button {
    background: var(--button-primary-bg);
    color: var(--button-primary-color);
}

body[data-theme="light"] .send-button:hover {
    background: var(--button-primary-hover);
}

body[data-theme="light"] .form-input {
    background: var(--input-background);
    border: 1px solid var(--input-border);
    color: var(--text-color);
}

body[data-theme="light"] .form-input:focus {
    border-color: var(--input-border-focus);
    box-shadow: var(--shadow-input-focus);
}

body[data-theme="light"] .form-label {
    color: var(--text-color);
}

body[data-theme="light"] .submit-btn {
    background: var(--button-primary-bg);
    color: var(--button-primary-color);
}

body[data-theme="light"] .submit-btn:hover {
    background: var(--button-primary-hover);
}

body[data-theme="light"] .back-btn {
    background: var(--button-secondary-bg);
    color: var(--button-secondary-color);
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .back-btn:hover {
    background: var(--button-secondary-hover);
}

body[data-theme="light"] .logout-btn {
    background: var(--button-danger-bg);
    color: white;
}

body[data-theme="light"] .logout-btn:hover {
    background: var(--button-danger-hover);
}

/* 强制设置body背景 */
html[data-theme="light"] body,
body[data-theme="light"] {
    background: var(--background) !important;
}