/*
Theme Name: AI Herbalist Symptom Guide
Theme URI: https://example.com/ai-herbalist
Author: Manus
Description: A professional WordPress theme for AI-powered herbalist symptom analysis.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ai-herbalist
*/

/* Tailwind-inspired base styles for the theme */
:root {
    --color-emerald-50: #ecfdf5;
    --color-emerald-100: #d1fae5;
    --color-emerald-200: #a7f3d0;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    --color-emerald-700: #047857;
    --color-emerald-800: #065f46;
    --color-emerald-900: #064e3b;
    --color-slate-50: #f8fafc;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--color-emerald-50);
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--color-emerald-600);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-emerald-700);
}

.btn-secondary {
    background-color: white;
    color: #374151;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: 1px solid var(--color-slate-300);
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: var(--color-slate-50);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-slate-300);
    border-radius: 0.375rem;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.symptom-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-emerald-100);
    color: var(--color-emerald-900);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border: none;
}

.symptom-tag:hover {
    background-color: var(--color-emerald-200);
}

.analysis-result {
    background-color: var(--color-slate-50);
    padding: 1.5rem;
    border-top: 1px solid var(--color-slate-200);
}

.prose h2 { color: var(--color-emerald-900); font-weight: 700; font-size: 1.5rem; margin-top: 1.5rem; }
.prose h3 { color: var(--color-emerald-800); font-weight: 600; font-size: 1.25rem; margin-top: 1rem; }
.prose p { margin-bottom: 1rem; line-height: 1.6; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.25rem; }
