/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%; /* Ekranning 80% gacha kenglik */
    max-height: 80%; /* Ekranning 80% gacha balandlik */
    overflow: hidden; /* Ichidagi narsalar sig'masa, to'liq ko'rsatmaydi */
    box-sizing: border-box;
}

/* Modal ichidagi video */
.modal-content video {
    width: 100%;
    height: auto;
    max-height: 70vh; /* Ekranning balandligini cheklaydi */
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    padding: 10px;
  }

  #modalVideo {
    width: 100%;
    height: auto;
  }

  .modal-content b {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 1.2rem;
}
}