.video-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 220px;
    height: 280px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
  }
  .video-container.enlarged {
    width: 300px;
    height: 450px;
  }
  #videoPlayer {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  .menu-options {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    position: absolute;
    bottom: 11px;
  }
  .control-button {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    display: none;
    z-index: 2;
  }
  .mute-button {
    top: 5px;
    right: 5px;
  }
  .pause-button {
    top: 5px;
    left: 5px;
  }
  .close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 3;
    display: block;
  }
  .video-container.enlarged .control-button {
    display: block;
  }
  .video-container.enlarged .close-button {
    display: none;
  }
  .english-options,
  .hindi-options {
    display: none; /* Hide both initially */
  }
  .hindi-options {
    display: none; /* Hide by default */
    flex-direction: column; /* Make buttons stack vertically */
    gap: 5px; /* Add spacing between buttons */
    margin-top: 10px;
    position: absolute;
    bottom: 11px;
  }

  button.hindi {
    background-color: #d32f2f; /* Red shade for Hindi buttons */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  button.yellow {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  button.green {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  .back-button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  .language-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}