/* LAYOUT STRUCTURE ONLY - NO COLORS, NO FONTS */


/* Header */
.site-header {
  width: 100%;
  border-bottom: 1px solid #ccc;
  position: relative; /* Or fixed if you want sticky */
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Layout Wrapper - contains sidebar and main content */
.wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  min-height: 100vh;
  background-color: #effbff;
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 20px;
  background-color: rgb(239, 251, 255); /* controls bacground for pages in site folder */
}

/* Hero-section */
.hero-section {
  background: linear-gradient(135deg, #2080b9, #55c0e0);
  color: white;
  padding: 60px 30px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
}

/* Sidebar */
.sidebar {
  width: 260px;
  padding: 20px;
  border-right: 1px solid #ddd;
  background-color: #fff;
  overflow-y: auto;
  position: sticky;
  top: 0;
  height: 100vh;
}

/* Footer */
.site-footer {
  text-align: left;
  padding: 40px 20px 20px;
  margin-top: 2rem;
  background-color: #fff;
  border-top: 1px solid #ddd;
}


  