/* Dynamic Theme Styles - Generated by PHP */
:root {
    /* Primary Colors */
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --primary-light: #1084ff;
    
    /* Secondary Colors */
    --secondary-color: #379c4a;
    --secondary-dark: #2c7d3b;
    --secondary-light: #42bb59;
    
    /* Accent Colors */
    --accent-color: #10B981;
    --accent-dark: #0d9467;
    --accent-light: #13de9b;
    
    /* Background Colors */
    --background-color: #ffffff;
    --background-dark: #e6e6e6;
    --background-light: #ffffff;
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #000000;
    
    /* Font */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Test Element - Remove this in production */
.theme-test {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 3px solid var(--accent-color);
}

/* If you see this blue bar, theme is WORKING! */

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

/* Card Styles */
.card {
    background: var(--background-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation Styles */
.navbar {
    background: var(--background-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Form Styles */
.form-input {
    background: var(--background-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    width: 100%;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
