html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

:root {
  --text: #e88f8f; /* Soft coral for readable, warm text */
  --text_subtle: #d1876f; /* Muted warm brown for subtle text */
  --subtle: #353535;
  --subtle_: #555;
  --link: #f28a8a; /* Lively coral for links */
  --link_subtle: #f1b7b7; /* Soft blush pink for subtle links */
  --bg: #EEF5D2; /* Sage green background */
  --bg_: #f1d0f4; /* Light purple background */
  --bg__: #d8c5ff; /* Very soft lavender */
  --transparent: transparent;
  --highlight_block: #f2c8d2; /* Soft highlight color */
  --beta-text: #eee;
}

body {
  background: var(--bg, #EEF5D2); /* Soft sage green background */
  color: var(--text); /* Set text color to soft coral */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.maindiv {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.imagecontainer {
  padding: 10px;
  text-align: center;
  height: 30vh;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.player {
  margin-top: 15px;
  text-align: center;
  margin-bottom: 10px;
}

.info {
  font-family: monospace;
  color: var(--text); /* Use soft coral for the info section */
  font-size: 13px;
  text-align: center;
  margin: auto;
  width: 400px;
  padding: 20px;
}

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-bottom: 16px;
}

.contact {
  color: var(--text); /* Use soft coral for contact text */
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  justify-content: center;
  position: fixed; /* Ensure it's fixed at the bottom */
  bottom: 20px; /* Add margin from the bottom */
  z-index: 999; /* Ensure it stays on top of other elements */
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7); /* Optional: add background for better visibility */
}

.contact-link {
  color: var(--text); /* Deep brown for links */
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 2px solid #435472;
  padding: 2px;
}

#scheduleTable {
  color: var(--text); /* Set text color to deep brown or dark gray for better readability */
  font-size: 14px;
}

#scheduleTable td {
  color: var(--text); /* Ensure table data inherits the deep brown for contrast */
}

h4 {
  margin: 0;
  font-weight: bolder;
  font-size: 14px;
}

.dateclass {
  width: fit-content;
  margin-right: 10px;
}

td {
  font-family: monospace;
  padding: 13px;
}

#scheduleTable tr {
  height: 40px;
}

.schedule {
  color: white;
}

.fade {
  opacity: 0;
  transition: opacity 2s;
}

.fade.ready {
  opacity: 1;
}

.sticky {
  padding: 8px 0 16px;
  width: 100%;
  align-items: flex-start;
  margin: auto;
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  box-shadow: 0 -14px 9px 2px #111;
  background-color: #111;
}

@media screen and (max-width: 440px) {
  .maindiv {
    width: 100%;
  }
  .imagecontainer {
    height: 20vh;
    width: 100%;
  }
  
  .info {
  font-family: monospace;
  color: var(--text); /* Use soft coral for the info section */
  font-size: 13px;
  text-align: center;
  margin: auto;
  width: 400px;
  padding: 20px;
}
 
#scheduleTable {
  color: var(--text); /* Set text color to soft coral for schedule table */
  font-size: 14px;
}

#scheduleTable td {
  color: var(--text); /* Ensure table data text is the same warm color */
}
}
