<style>


body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #FFFFFD;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 2.0em;
  color: #2c3e50;
    line-height: 0.3em;
}

.subtitle {
  color: #555;
  font-style: italic;
}

/* Date selector container */
.date-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.date-selector label {
  font-weight: bold;
  margin: auto 0;
}

/* Styled dropdowns */
.date-selector select {
  padding: 8px 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 120px;
}

/* Hover & focus states */
.date-selector select:hover {
  border-color: #888;
}

.date-selector select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52,152,219,0.5);
}

/* ✅ Hide labels only on small screens */
@media (max-width: 600px) {
  .date-selector label {
    display: none;
  }

  .date-selector {
    gap: 6px;
  }

  .date-selector select {
    flex: 1; /* let them share space evenly */
  }
}



article#devotion {
  margin-bottom: 25px;
}

#devotion-title {
  font-size: 1.6em;
  color: #242424;
  margin-bottom: 10px;
}

#devotion-scripture {
  font-size: 1.6em;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 10px;
  text-shadow: 0px 0px 2px rgb(0 0 0 / 10%);
}

#audio-section {
  margin: 20px 0;
  text-align: center;
}

#audio-section h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #2c3e50;
}
    
  /* Apply Tamil Bible font for devotion text */
#devotion-body, 
#devotion-body p,
#devotion-title p,
#devotion-scripture {
  font-family: "Tamil Bible", serif;
  font-size: 1.1em;
  line-height: 1.1;
}

    
    @font-face {
  font-family: "Tamil Bible";
  src: url("fonts/Tamil Bible.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Apply Tamil Bible font to devotion body text */
#devotion-body {
  font-family: "Tamil Bible", serif;
  font-size: 1.3em;
  line-height: 1.3;
  text-shadow: 0px 0px 3px rgb(0 0 0 / 30%);
}
    
/* Apply Tamil Bible font to devotion body text */
#devotion-title {
  font-family: "Tamil Bible", serif;
  font-size: 1.6em;
  line-height: 1.9;
}

/* Audio section */
#audio-section {
  margin: 1em 0;
  text-align: center;
}

/* Responsive audio player */
#audio-section audio {
  width: 100%;          /* take full width of small containers */
  max-width: 400px;     /* ✅ cap width on large screens */
  height: 40px;         /* consistent height */
  display: inline-block;
}


    
    
</style>