/* Collapsible Youtube embed CSS STARTS */
.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background-color: #000000;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    /* Slightly smaller than container to create padding */
    height: 96%;
    border: none;
  }
  
  .video-details {
    margin-top: 20px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .video-details summary {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 12px 16px;
    cursor: pointer;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 500;
    color: #030303;
  
  }
  
  .video-details[open] summary {
    border-bottom: 1px solid #e8e8e8;
  }
  
  .video-details p {
    padding: 16px;
    margin: 0;
    background-color: #ffffff;
    color: #030303;
  }
  
  /* Collapsible Youtube embed CSS ENDS */