/* styles_dailymotion.css */

/* Global Styles (you can combine these with the other project if needed) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 50px;
    overflow: hidden;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 9998; /* Behind the popup but above the rest of the page */
  }
  
  .popupContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8); /* Use RGBA with 20% transparency */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Above the semi-transparent background */
    max-width: 80%;
    max-height: 80%;
    overflow: hidden;
    padding: 20px; /* Add padding to make room for the close button */
  }
  
  .closeBtn {
    position: absolute;
    top: 10px; /* Adjust the top position to make half of the icon in the transparent background */
    right: 10px; /* Adjust the right position to make half of the icon in the transparent background */
    cursor: pointer;
    z-index: 2;
  }
  
  .videoPlayer {
    width: 100%;
    height: 100%;
  }
  
  /* Dailymotion Specific Styles */
  #triggerDailymotion {
    font-size: 18px;
    font-weight: 400;
    color: #050505;
    padding: 14px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  
  