﻿/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
}

    .modal-content iframe {
        width: 100%;
        height: 450px;
    }

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
}

@media (max-width: 600px) {
    .modal-content iframe {
        height: 250px;
    }
}
