.modal {
    display: none;
    position: fixed;
    z-index: 9999; /* וידאו מעל הכל */
    left: 0;
    top: 70px; /* להזיז קצת למטה */
    width: 100%;
    height: 50%; /* חלון הוידאו יהיה קטן יותר */
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 10px;
    width: 80%; /* יקטין את הרוחב */
    max-width: 800px;
    height: 70%; /* יקטין את הגובה */
}

.modal-content video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}