/* ===================================
   Quittapahilla Watershed Association
   Global Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #6C8E87;
}

/* Top Title Band */
.header {
  background-color: #2C5F4F;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header h1 {
  margin: 0;
  color: white;
  font-size: 28px;
}

/* Main Container (flex row for sidebar + content) */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Left Sidebar Menu */
.sidebar {
  width: 180px;
  background-color: #2C5F4F;
  padding: 15px;
  overflow-y: auto;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sidebar a {
  display: block;
  margin-bottom: 15px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar a:hover {
  background-color: #A9D8AC;
  color: #2C5F4F;
  transform: translateX(4px);
}

/* Active state styling */
.sidebar a.active {
  background-color: #A9D8AC;
  color: #2C5F4F;
  font-weight: 600;
  border-left: 3px solid #1a4d3e;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar a b {
  display: block;
  margin-bottom: 4px;
}

/* Content Area */
.content {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

