/* Global Variables - Premium Palette (Matching nuevo.videntes.com) */
:root {
    --color-bg-body: #FFFFFF;
    --color-bg-section: #FAFAFC;
    --color-bg-card: #FFFFFF;

    --color-primary: #ECFF77;
    /* Lime/Yellow */
    --color-primary-text: #000000;
    --color-primary-hover: #D9E866;

    --color-text-main: #1A1A1A;
    --color-text-muted: #666666;

    --color-accent: #9b51e0;
    /* Staying with purple for mystical accents if needed, or remove */
    --color-danger: #e74c3c;
    --color-success: #2ecc71;

    /* Fonts match the reference: Serif for headings, Sans for body */
    --font-heading: "PP Morii", "Times New Roman", serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    --radius-md: 8px;
    --radius-lg: 20px;
    /* Rounder cards */
}

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

body {
    background-color: var(--color-bg-section);
    /* Light theme */
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    color: var(--color-text-main);
    /* Links are often dark in this design */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    /* Specific from analysis */
    background: var(--color-primary);
    color: var(--color-primary-text);
    font-family: var(--font-heading);
    /* Button text often serif in this design */
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--color-primary-hover);
    color: #000 !important;
    /* Force black text */
    transform: scale(1.02);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid #B2B2B2;
    /* Grey border */
    color: #000;
    font-family: var(--font-heading);
}

.btn-outline:hover {
    background: #000;
    color: #fff !important;
    /* Force white text */
    border-color: #000;
    text-decoration: none;
}

/* Components */
.card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-md);
    color: var(--color-text-main);
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: #000;
    background: #FFF;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    letter-spacing: -0.5px;
}

/* Sidebar for Dashboard */
.sidebar {
    background: #fff;
    border: 1px solid #eee;
}

.sidebar-menu a {
    color: var(--color-text-muted);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--color-primary);
    color: #000;
    font-weight: 600;
}

/* Stats */
.stat-card {
    background: #fff;
    box-shadow: var(--shadow-card);
}

.stat-value {
    color: #000;
}