    @import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Sanskrit&display=swap');

    body {
      margin: 0;
      font-family: 'Tiro Devanagari Sanskrit', serif;
      font-size: 25px;
      font-weight: bold;
      display: flex;
    }

    /* Fixed left menu */
    .left-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 250px;
      height: 100vh;
      background: #333;
      color: white;
      padding: 20px;
      box-sizing: border-box;
      overflow-y: auto;
    }

    .left-menu h3 {
      margin-top: 0;
    }

    .left-menu a {
      display: block;
      color: white;
      font-size: 20px;
      font-weight: normal;
      text-decoration: none;
      margin: 10px 0;
    }

    .left-menu a:hover {
      text-decoration: underline;
    }

    /* Main content area */
    .content-wrapper {
      margin-left: 250px; /* same as left-menu width */
      padding: 20px;
      width: calc(100% - 200px); /* fill remaining space */
      box-sizing: border-box;
    }

    .block {
      width: 85%;
      margin-bottom: 0px;
      padding: 1px;
      background: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 6px;
      position: relative;
    }

    .audio-player {
      position: sticky;
      top: 0;
      background: #eee;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 500;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 120px; /* spacing between audio and text */
    }

    .block h2 {
      margin-top: 0;
      text-align: center;
    }

    h2 {
      color: darkblue;
      font-family: 'Tiro Devanagari Sanskrit', serif;
    }

    pre {
      font-family: 'Tiro Devanagari Sanskrit', serif;
      padding-left: 100px;
      font-size: 40px;
      line-height: 1.6;
    }

    /* right col */
    .right-col {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 500;
      width: 200px;
      height: 100vh;
      background: #333;
      color: white;
      padding: 20px;
      box-sizing: border-box;
      overflow-y: auto; /* optional if content exceeds height */
      border-left: 1px solid #ccc;
    }

    .right-col h3 {
      margin-top: 0;
    }

    .right-col a {
      display: block;
      color: white;
      font-size: 20px;
      font-weight: normal;
      text-decoration: none;
      margin: 10px 0;
    }

    .right-col a:hover {
      text-decoration: underline;
    }
