/* Wrapper and content styles */
.songlist-wrapper {
    background-image: url('images/songlist.jpg');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 150px);
    padding: 2rem 0;
  }
  
  .songlist-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
  }
  
  /* Page title image */
  .page-title {
    display: block;
    margin: 0 auto 0.5rem;
    max-width: 600px;
  }
  
  /* Date line */
  .date {
    text-align: center;
    color: #1D2D1C !important;
    margin: 0 0 2rem;
    font-style: italic;
  }
  
  /* Song table styling */
  .song-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
  }
  
  .song-table th,
  .song-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .songlist-content {
      margin: 1rem;
      padding: 1rem;
    }
  
    .song-table th,
    .song-table td {
      padding: 0.5rem;
    }
  }
  
  /* — New additions — */
  
  /* Center date and toggle button together */
  .date-controls {
    text-align: center;
    margin-bottom: 1em;
  }
  
  /* Tweak the date paragraph */
  .date {
    margin: 0;
    padding-bottom: 0.5em;
  }
  
  /* Toggle‑button styling */
  .toggle-btn {
    display: inline-block;
    padding: 0.5em 1.5em;
    font-size: 1rem;
    cursor: pointer;
  }
  /* Ensure both tables have the same width and appearance */
.song-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2em auto;
    border-collapse: collapse;
    font-size: 1rem;
    table-layout: fixed;
  }
  
  /* Consistent styling for headers and cells */
  .song-table th,
  .song-table td {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    background-color: rgba(255, 255, 255, 0.3); /* 30% transparent white */
    text-align: left;
    word-wrap: break-word;
  }
  