/* =========================================
   GOVEY CENTRAL STYLESHEET (Aubergine & Mint)
   ========================================= */

/* Import Google Font 'Inter' */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Nieuwe Huisstijl Kleuren */
    --aubergine: #2D1B2E;
    --lilac: #B0A8B9;
    --mint: #4ECDC4;
    --mint-glow: #80FFDB;
    
    /* Mapping naar functionele variabelen */
    --primary-color: var(--aubergine);      /* Hoofdkleur: Donkerpaars */
    --primary-dark: #1a0f1b;                /* Nog donkerder voor hover */
    --primary-light: #f3f0f4;               /* Heel licht paars voor achtergronden */
    
    --accent-color: var(--mint);            /* Actiekleur: Fris Mint */
    
    --secondary-color: #f9fafb;             /* Algemene achtergrond (bijna wit) */
    --text-color: var(--aubergine);         /* Tekst is nu ook aubergine ipv zwart */
    --text-muted: #64748b;                  /* Voor minder belangrijke tekst */
    
    --border-color: #e2e8f0;
    
    /* Status kleuren */
    --success-color: var(--mint);
    --danger-color: #ef4444;
    --warning-color: #f59e0b;

    /* Chat specifiek */
    --chat-bg: #ffffff;
    --user-msg-bg: var(--aubergine);
    --bot-msg-bg: #f3f0f4;
}

body {
    font-family: 'Inter', sans-serif; /* Nieuw lettertype */
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- NAVBAR & LOGO --- */
.navbar {
    background-color: white;
    padding: 0 30px;
    height: 70px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.2s;
}

.logo-container:hover {
    transform: translateY(-1px);
}

.logo-box {
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3em;
    position: relative;
    /* Subtiele paarse schaduw */
    box-shadow: 0 4px 6px -1px rgba(45, 27, 46, 0.3), 0 2px 4px -1px rgba(45, 27, 46, 0.1);
}

.logo-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background-color: var(--mint); /* Nu Mint */
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 4px var(--mint-glow); /* Glow effect */
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

/* --- GEBRUIKER MENU --- */
.user-menu, .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-logout {
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-logout:hover {
    border-color: var(--danger-color);
    color: var(--danger-color);
    background-color: #fff5f5;
}

/* --- KNOPPEN (AANGEPAST AAN AUBERGINE) --- */
button {
    -webkit-tap-highlight-color: transparent;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px; /* Iets ronder voor Inter stijl */
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

/* Primary: Aubergine */
.btn-primary, button.btn-primary {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-primary:hover, button.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 27, 46, 0.2);
}

.btn-primary:active, .btn-primary:focus, button.btn-primary:active, button.btn-primary:focus {
    background-color: var(--primary-dark) !important;
    color: #ffffff !important;
    transform: translateY(1px);
    outline: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

/* Secondary: Wit/Grijs */
.btn-secondary, button.btn-secondary, .btn-outline {
    background-color: white !important;
    border: