:root {
  --orange: #f7941d;
  --dark-blue: #1a2b3c;
  --light-bg: #f5f7fb;
  --white: #fff;
  --text: #222;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", sans-serif;
  background: var(--light-bg);
  color: var(--text);
  min-height: 100vh;
}

/* HEADER */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark-blue);
  color: var(--white);
  padding: 10px 20px;
}
.topbar .logo { height: 40px; margin-right: 10px; }
.topbar .site-title { font-size: 20px; color: var(--white); font-weight: 600; }
.topbar .site-title span { color: var(--orange); }
.logout {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 15px;
  background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
}
