/* This file contains the custom CSS styles extracted from the ai_core.html 
file's internal <style> block.

NOTE: The existing HTML file is a single-file application and does not 
link to external stylesheets. If you use this CSS file, you must 
modify the HTML to link it externally and remove the internal <style> block.
*/

/* Apply the Inter font globally */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Deep dark blue background */
}

/* Custom styling for rounded inputs/selects/textareas (These are mostly Tailwind classes) */
.soft-input {
    /* The original HTML uses Tailwind @apply for these styles, 
    but here is the equivalent CSS for reference:
    */
    width: 100%;
    padding: 0.75rem; /* p-3 */
    background-color: #ADD8E6; /* bg-input-dark */
    border: 1px solid transparent;
    color: #f3f4f6; /* text-gray-100 */
    border-radius: 1rem; /* rounded-xl */
    transition: all 200ms ease-in-out;
}

.soft-input:focus {
    border-color: #ADD8E6; /* focus:border-primary */
    outline: none;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.5); /* focus:ring-2 focus:ring-primary/50 */
}

/* Custom neon text shadow effect */
.neon-glow {
    text-shadow: 0 0 5px rgba(168, 85, 247, 0.7), 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Style for the response container */
.ai-response-box {
    /* The original HTML uses Tailwind @apply for these styles, 
    but here is the equivalent CSS for reference:
    */
    background-color: #1e293b; /* bg-card-dark */
    padding: 1.5rem; /* p-6 */
    border-radius: 1.5rem; /* rounded-2xl */
    border: 1px solid rgba(34, 211, 238, 0.3); /* border border-secondary/30 */
    box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.1), 0 4px 6px -2px rgba(34, 211, 238, 0.05); /* shadow-lg shadow-secondary/10 */
    margin-top: 1.5rem; /* mt-6 */
}