/* video-modal.css */

.video-modal-link {
  color: #1a73e8;
  text-decoration: underline;
  cursor: pointer;
  font-size: 18px;
}

/* הרקע הכהה שמכסה את הדף */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-modal-overlay.video-modal-active {
  display: flex;
}

/* תיבת התוכן של המודאל */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
