body {
            font-family: Arial, sans-serif;
            margin: 0 auto;
            max-width: 600px; /* Restrict the width for easier reading on mobile */
            padding: 1em;
        }
		.song-list {
            list-style-type: none;
            padding: 0;
        }
        .song-list li {
            margin: 0.5em 0;
            font-size: 1.2em;
        }
        .song-link {
            color: #007BFF;
            text-decoration: none;
        }
        .song-link:hover {
            text-decoration: underline;
        }
		
        h1, h2 {
            text-align: center;
        }
        .audio-player {
            width: 100%;
            margin: 1em 0;
            display: block;
        }
        .sheet-music {
            width: 100%;
            margin-bottom: 1em;
        }
        .back-link {
            display: inline-block;
            margin-top: 1em;
            font-size: 1.1em;
            color: #007BFF;
            text-decoration: none;
        }
        .back-link:hover {
            text-decoration: underline;
        }
        .youtube-link {
            display: block;
            margin: 0.5em 0;
            color: #007BFF;
            text-decoration: none;
        }
        .youtube-link:hover {
            text-decoration: underline;
        }
		.video-container {
      position: relative;
      width: 100%;
      /* Maintain 16:9 aspect ratio if you want a fixed ratio */
      padding-top: 56.25%;
      margin-bottom: 1em;
    }
    .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
	
/* Optional styling for the Practice Schedule link */
        .practice-link {
            display: block;
            margin-top: 2em;
            text-align: center;
            font-size: 1.2em;
            color: #007BFF;
            text-decoration: none;
        }
        .practice-link:hover {
            text-decoration: underline;
        }
		table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 2em;
        }
        th, td {
            border: 1px solid #ccc;
            padding: 0.75em;
            text-align: center;
        }
        th {
            background-color: #f7f7f7;
        }