:root{
    --nav-bg: #ffffff;
    --nav-border: #e9e9ee;
  
    /* Pastel lavender button */
    --btn-bg: #d8c7ff;
    --btn-bg-hover: #ccb7ff;
    --btn-text: #2a2240;
  
    --text: #111827;
    --muted: #6b7280;
  }
  
  .navbar{
    font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
  
    padding: 14px 22px;
  }
  
  .brand{
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
  }
  
  .nav-right{
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .nav-user{
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
  }
  
  .nav-link{
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
  }
  
  .nav-link:hover{
    opacity: 0.85;
  }
  
  /* Rounded pastel "Inloggen" button */
  .nav-button{
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--btn-text);
  
    background: var(--btn-bg);
    border: 1px solid rgba(0,0,0,0.06);
  
    padding: 8px 14px;
    border-radius: 999px;
  
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  
    transition: background 0.15s ease, transform 0.05s ease, opacity 0.15s ease;
  }
  
  .nav-button:hover{
    background: var(--btn-bg-hover);
  }
  
  .nav-button:active{
    transform: translateY(1px);
  }
  
  /* Tiny favicon next to text */
  .nav-icon{
    width: 16px;
    height: 16px;
    display: inline-block;
  
    object-fit: contain;
    flex: 0 0 auto;
  
    border-radius: 4px;
  }