/* Modal pozadina */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Tamna pozadina */
    backdrop-filter: blur(10px); /* Zamagljena pozadina */
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  /* Kontejner za video */
  .video-container {
    position: relative;
    width: 100%; /* Širina video modala */
    height: 100%; /* Visina video modala */
    background: rgba(0, 0, 0, 0.9); /* Pozadina unutar kontejnera */
    border-radius: 10px; /* Zaobljeni uglovi */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Video */
  video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  
  /* Dugme za zatvaranje */
  .close-btn {
    position: absolute;
    top: 30px;
    right: 10px;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2000;
  }
  
  .close-btn:hover {
    background: #f00; /* Crvena boja na hover */
    color: #fff;
  }
  