@charset "UTF-8";
/* ======================================
   NURSERY CALENDAR STYLESHEET (SCSS)
   ====================================== */
/* ====== GLOBAL STYLES ====== */
@page {
  size: US-Letter Portrait;
  margin: 0.5in;
}
* {
  font-family: Verdana, Arial;
  font-size: 11pt;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

em {
  font-size: 9pt;
}

/* ====== NAVIGATION STYLES ====== */
#page-navigation {
  background-color: #f8f8f8;
  border-bottom: 1px solid #666666;
  padding: 10px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#page-navigation .nav-container {
  margin: 0 auto;
  padding: 0 15px;
}
#page-navigation .nav-container h2 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
  color: #333333;
}
#page-navigation .nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 10px;
}
#page-navigation .nav-links li {
  display: inline;
  margin-right: 5px;
}
#page-navigation .nav-links a {
  display: inline-block;
  padding: 8px 12px;
  background-color: #cc0808;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
  transition: background-color 0.3s;
}
#page-navigation .nav-links a:hover {
  background-color: #a00606;
  text-decoration: none;
}

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #cc0808;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#scrollToTop:hover {
  background-color: #a00606;
}

/* Section header styling */
.section-header {
  background-color: #f8f8f8;
  padding: 10px 15px;
  margin: 20px 0;
  border-left: 4px solid #cc0808;
  font-size: 1.5em;
  color: #333333;
}

/* ====== ADMIN TOOLS STYLES ====== */
#adminSection {
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f8f8f8;
  border: 1px solid #666666;
  border-radius: 5px;
}

#nameDropdown {
  padding: 8px;
  font-size: 1em;
  border: 1px solid #666666;
  border-radius: 4px;
  margin-bottom: 15px;
  max-width: 300px;
}

.copy-button {
  background-color: #cc0808;
  border: none;
  color: #ffffff;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 4px;
}
.copy-button:hover {
  background-color: #a00606;
}

/* ====== SCOPE & SEQUENCE STYLES ====== */
.scope-sequence-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.month-card {
  flex: 1;
  min-width: 300px;
  border: 1px solid #666666;
  border-radius: 5px;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.month-card h3 {
  text-align: center;
  margin-top: 0;
  padding: 10px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 3px;
  margin-bottom: 10px;
}

.month-theme {
  background-color: #f7f7f7;
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1em;
  color: #333333;
}

.memory-verse {
  font-size: 0.9em;
  color: #666666;
  margin-top: 6px;
  font-style: italic;
}

.scope-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.scope-table th, .scope-table td {
  border: 1px solid #666666;
  padding: 8px;
  text-align: left;
  font-size: 0.9em;
}
.scope-table th {
  background-color: #f8f8f8;
  font-weight: bold;
}
.scope-table tr:nth-child(even) {
  background-color: #f8f8f8;
}

.lesson-title {
  font-weight: bold;
  margin-bottom: 4px;
}

.faith-fact {
  font-size: 0.85em;
  color: #666666;
}

/* ====== CALENDAR STYLES ====== */
.title {
  font-weight: bold;
  font-size: 1.8em !important;
  margin-bottom: 15px;
  color: #333333;
}

.page {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.plan {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #666666;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.plan.li {
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
}

.plan_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 !important;
  table-layout: fixed;
  box-sizing: border-box;
}
.plan_table td {
  border: 1px solid #666666;
  padding: 8px;
  font-size: 0.9em;
}

.plan_dates {
  font-weight: bold;
  font-size: 1em !important;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  padding: 10px !important;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.split_time {
  background-color: #f8f8f8;
  color: #333333;
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  padding: 8px;
}

.person_position {
  font-size: 0.9em;
  padding-left: 10px;
  background-color: #f7f7f7;
  font-weight: bold;
  vertical-align: top;
}

.person_name {
  padding: 4px 0;
  font-size: 1.2em;
}

.highlight {
  background-color: #ffffcc;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 3px;
}

/* ====== CARD STYLES ====== */
.card {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 12px;
  margin: 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Prevent text selection */
}
.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  filter: brightness(110%);
}
.card::after {
  content: "▼";
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  transition: transform 0.3s;
}
.card.active::after {
  transform: rotate(180deg);
}

.card-content {
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  margin-top: 15px;
  text-align: left;
  background-color: #ffffff;
  color: #000000;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #eee;
  display: none;
  /* Hidden by default */
}
.card-content a {
  color: inherit;
  text-decoration: none;
}
.card-content a:hover {
  text-decoration: underline;
}

/* Card colors */
.red {
  background-color: #cc0808;
}

.blue {
  background-color: #27BFD3;
}

.yellow {
  background-color: #FAAF40;
}

.green {
  background-color: #98C93C;
}

.purple {
  background-color: #DA70D6;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 768px) {
  .plan,
.month-card {
    min-width: 100%;
  }

  .plan_table td {
    padding: 5px;
    font-size: 0.8em;
  }

  .scope-table {
    font-size: 0.8em;
  }
  .scope-table th, .scope-table td {
    padding: 5px;
  }

  .nav-links {
    flex-direction: column;
    gap: 5px;
  }
  .nav-links a {
    width: 100%;
    text-align: center;
  }

  #scrollToTop {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
}
/* For scroll margin when clicking navigation links */
#scope-sequence,
#march-calendar,
#april-calendar {
  scroll-margin-top: 80px;
}