/* Layout container */
.page-wrap {
  display: flex;
  align-items: flex-start;      /* top-align columns */
  gap: 24px;                    /* space between content and sidebar */
  max-width: 1100px;            /* keep things readable */
  margin: 0 auto;
  padding: 0 16px;
}

/* Main content column */
.content {
  flex: 1 1 auto;               /* fill remaining space */
  min-width: 0;                 /* prevents overflow issues */
}

/* Sidebar column */
.sidebar {
  flex: 0 0 320px;              /* fixed width right column */
}

/* Ensure images/banners don’t blow out the layout */
.site-header img,
.content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent long lists/widgets from breaking layout */
.sidebar .widget {
  margin-bottom: 16px;
}
.page-wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.content {
  flex: 1 1 auto;
  min-width: 0;
}

.sidebar-right {
  flex: 0 0 320px;
}

.site-footer {
  margin-top: 40px;
  text-align: center;
}
.scroll-box {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
}

.scroll-box ul {
  margin: 0;
  padding: 8px;
  list-style-type: none;
}

.scroll-box li {
  margin-bottom: 6px;
}
.widget {
  margin-bottom: 20px;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #ccc;
}

.updates-list {
  margin: 0;
  padding-left: 16px;
}

.updates-list li {
  margin-bottom: 6px;
  color: #333;
}
.login-box ul {
  list-style: none;   /* removes bullets */
  padding: 0;         /* removes left indent */
  margin: 0;
}

.login-box li {
  margin: 5px 0;      /* optional spacing between items */
}
ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.login-box {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 20px;
  max-width: 300px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.login-box label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

.login-options {
  margin-top: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}

.login-box button {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background-color: #444;
  color: #fff;
  border: none;
  cursor: pointer;
}

.login-box button:hover {
  background-color: #666;
}

.login-links {
  text-align: center;
  margin-top: 15px;
}

.register-link {
  color: #800080;
  font-weight: bold;
}

.login-links a:hover {
  text-decoration: underline;
}
body {
  background-color: #f4ecd8; /* soft sepia tone */
  color: #3b2f2f;           /* dark brown text for readability */
  font-family: Georgia, serif;
}.sidebar {
  width: 100%;
  max-width: 300px; /* or whatever width you want */
  margin: 0 auto;
}

.widget-box {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  box-sizing: border-box;
  width: 100%;
}


.nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.nav-prev, .nav-next {
    font-weight: bold;
}

.reverent-note {
    font-style: italic;
    text-align: center;
    margin: 15px 0;
    color: #555;
}



@media screen and (max-width: 768px) {
  #css3menu1 {
    display: block;
  }

  #css3menu1 li {
    display: block;
    width: 100%;
  }

  #css3menu1 li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
}
.session-reminder {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
}

.membership-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6a4e42; /* warm brown */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.membership-button:hover {
  background-color: #8b6f5a; /* lighter brown on hover */
}

