.subPageHeader {
  background-color: #846954;
  font-size: 50px;
  font-family: sans-serif;
  font: helvetica;
  color: #DFDFD4;
  margin: 0;
  padding: 0;
	text-align: center;
  margin-top: 0px;
}

@media (max-width: 1000px) {
  .subPageHeader {
      font-size: 60px;
  }
}

.mainLogo {
  position: absolute;
  top: 5px;
  left: 100px;
  width: 150px;
}

@media (max-width: 1000px) {
  .mainLogo {
      left: 0px;
      width: 150px;
  }
}

.mainLogoPlayer {
  width: 100px;
  margin-right:10px;
}

@media (max-width: 1000px) {
  .mainLogoPlayer {
      
      width: 170px;
  }
}

.sectionHeader {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 0px;
}

@media (max-width: 1000px) {
  .sectionHeader {
      font-size: 48px;
      margin-top: 20px;
  }
}

.lastUpdatedText {
    font-size:14px;
    margin-top:10px;
}

@media (max-width: 1000px) {
  .lastUpdatedText {
      font-size: 24px;
      margin-top: 5px;
  }
}

.otherDateText {
    font-size:20px;
}

@media (max-width: 1000px) {
  .otherDateText {
      font-size: 28px;
  }
}

.promoButton {
    position: absolute;
    font-family: sans-serif;
    font: helvetica;
    top: 40px;
    right: 30px;
    width: 150px;
    height: 60px;
    border-radius: 0px;
    background-color: #168241;
    border-width: 0.1px;
    border-color: black;
    margin-bottom: 15px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.2; /* Add this line to adjust the line-height */
}

@media (max-width: 1000px) {
  .promoButton {
      top: 32px;
  }
}

.promoButtonSubPage {
    position: absolute;
    font-family: sans-serif;
    font: helvetica;
    top: 25px;
    right: 30px;
    width: 150px;
    height: 60px;
    border-radius: 0px;
    background-color: #168241;
    border-width: 0.1px;
    border-color: black;
    margin-bottom: 15px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.2; /* Add this line to adjust the line-height */
}

@media (max-width: 1000px) {
  .promoButtonSubPage {
      top: 32px;
  }
}

.user-info {
  display: flex;
  justify-content: flex-end; /* Align items to the right */
  align-items: center;
  background-color: #4CAF50; /* Or use your existing top bar background color */
  color: #FFFFFF;
  padding: 10px 20px; /* Adjust based on your layout */
  font-family: sans-serif; /* Consistent with your design */
  position: relative; /* Needed to position email absolutely within */
  width: 100%; /* Ensure full width */
  height: 40px; /* Adjust based on your layout or desired height */
}

.header-signed-out {
  display: flex;
  justify-content: flex-end; /* Align items to the right */
  align-items: center;
  background-color: #ffffff; /* Or use your existing top bar background color */
  color: #FFFFFF;
  padding: 10px 20px; /* Adjust based on your layout */
  font-family: sans-serif; /* Consistent with your design */
  position: relative; /* Needed to position email absolutely within */
  width: 100%; /* Ensure full width */
  height: 60px; /* Adjust based on your layout or desired height */
}


.email {
  position: absolute; /* Position email absolutely */
  left: 50%; /* Center based on container's width */
  top: 50%; /* Align to the middle of the container vertically */
  transform: translate(-50%, -50%); /* Offset to truly center both horizontally and vertically */
  font-size: 16px; /* Adjust as needed */
}

.user-action, .user-action.logout {
  color: #FFFFFF;
  text-decoration: none;
  margin-right: 15px; /* Space between links */
  font-size: 24px; /* Consistent font size */
  display: inline-flex; /* Use inline-flex to align icons and text */
  align-items: center; /* Align icon with text */
}

.user-action i, .user-action.logout i {
  margin-right: 8px; /* Adjust the spacing between icon and text */
}

.user-action:hover, .user-action.logout:hover {
  color: #FFFFFF; /* Keeps the color white on hover */
  /* You can add any additional hover effects you want here */
}

/* Paywall Modal overlay – note the top offset to leave the daily summary visible */
#paywall-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 300px; /* Fixed value */
  width: 100%;
  height: calc(100% - 150px); /* Fixed height calculation */
  background-color: rgba(26, 70, 24, 0.99);
}

@media (max-width: 1000px) {
  #paywall-modal {
    top: 600px; /* Fixed value */
  }
}

/* Paywall Modal overlay – note the top offset to leave the daily summary visible */
#paywall-modal-full {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0px; /* Fixed value */
  width: 100%;
  height: calc(100% - 150px); /* Fixed height calculation */
  background-color: rgba(26, 70, 24, 0.99);
}

/* Example modal content styling */
.paywall-modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  width: 40%;
  max-width: 800px;
}

/* Mobile adjustments */
@media (max-width: 1000px) {
  .paywall-modal-content {
    width: 80%;
    padding: 20px;
  }
}

.paywall-modal-content h2 {
  margin-top: 0;
  font-size: 28px;
  color: #333;
}

@media (max-width: 1000px) {
  .paywall-modal-content h2 {
    font-size:40px;
  }
}

.paywall-headline {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.paywall-subhead {
  font-size: 24px;
  margin-bottom: 20px;
  color: #555;
  text-align: center;
}

/* Desktop styles */
.paywall-headline {
    font-size: 42px;
  }

.paywall-subhead {
    font-size: 28px;
}

/* Mobile adjustments */
@media (max-width: 1000px) {
  .paywall-headline {
    font-size: 60px;
  }
  .paywall-subhead {
    font-size: 40px;
  }
}

.paywall-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.paywall-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* Subscribe button style */
.paywall-subscribe-button {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  font-size: 32px;
  line-height: 60px;
}

@media (max-width: 1000px) {
  .paywall-subscribe-button {
      font-size: 42px;
  }
}

.paywall-subscribe-button:hover {
  background-color: #45a049; /* Slightly darker green on hover */
  color: #FFFFFF; /* White text */
}

/* Take a Tour button style */
.paywall-tour-button {
  background-color: #e0e0e0;
  color: #333;
  border: 1px solid #ccc;
  font-size: 32px;
}

@media (max-width: 1000px) {
  .paywall-tour-button {
      font-size: 42px;
  }
}

.paywall-tour-button:hover {
  background-color: #d0d0d0;
  color:#000;
}