/* CSS Variables - Colors are now controlled by environment variables via templates */
:root {
  /* Color variables are injected via templates from environment variables */
  /* See main/templates/base_page_template.html for color injection */
  --primary-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  background: #f7f8fa;
  color: #222;
}

/* REMOVED: .site-title moved to complete_navigation_bar.html component */
.toggle-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #14b8a6;
  cursor: pointer;
  margin-right: 16px;
}
.banner {
  background: #ccfbf1;
  color: #0f766e;
  text-align: center;
  padding: 8px 0;
  font-size: 1rem;
}
.container {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  background: #fff;
  border-right: 1px solid #e5e7eb;
  min-width: 220px;
  max-width: 260px;
  padding: 32px 0 0 0;
  box-shadow: 2px 0 8px rgba(0,0,0,0.03);
  transition: transform 0.2s;
  z-index: 10;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar li {
  margin: 0 0 12px 0;
}
.sidebar a {
  display: block;
  padding: 12px 32px;
  color: #14b8a6;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.sidebar a:hover, .sidebar a.active {
  background: #ccfbf1;
  color: #0f766e;
}
.main-content {
  flex: 1;
  background: #f7f8fa;
  min-height: 100vh;
}
button, .btn {
  background: #14b8a6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(20,184,166,0.08);
  transition: background 0.15s, box-shadow 0.15s;
}
button:hover, .btn:hover {
  background: #14b8a6;
  box-shadow: none;
}
input, select, textarea {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  transition: border 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: #14b8a6;
  outline: none;
}
.hidden {
  display: none !important;
}
.btn, button, .btn:link, .btn:visited {
  text-decoration: none !important;
}
/* Base button styles */
.btn.faq-btn {
  background: #ffffff;
  color: #222;
  border: none;
  padding: 7px 18px;
  font-size: 1em;
}
