/* ============================================
   COMMON STYLES
   Shared across ALL pages (base, dashboard, meetings, etc.)
   ============================================ */

/* --- Global reset --- */
/* Removes default browser spacing and makes sizing predictable */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Base body styles --- */
/* Sets the default font, background color, and text color for the whole site */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f0e8;
  color: #1c2419;
  line-height: 1.5;
  min-height: 100vh;
}

/* --- Links --- */
/* Removes underline and makes links inherit the surrounding text color */
a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   HEADER (top bar with logo)
   ============================================ */

header {
  border-bottom: 1px solid #c8d6c0;
  background-color: #f5f0e8;
}

/* Centers page content and limits its maximum width */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout for the header content (logo on the left, actions on the right) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo text + icon container */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.025em;
}

/* Small colored square/badge before the logo text */
.logo-icon {
  width: 36px;
  height: 36px;
  background-color: #2f8557;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ============================================
   BUTTONS
   Reused on the home page, forms, and anywhere a call-to-action is needed
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

/* Main call-to-action button (green) */
.btn-primary {
  background-color: #2f8557;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2c7a50;
}

/* Bigger version of .btn, used for hero sections */
.btn-large {
  padding: 12px 24px;
  font-size: 16px;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

/* Makes <main> grow to fill remaining vertical space
   (useful when body uses display: flex; flex-direction: column;) */
main {
  flex: 1;
}