.video-modal-link {
    color: #007bff;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.video-modal-link:hover {
    text-decoration: underline;
}

/* Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.video-modal.show {
    display: flex;
    animation: videoFadeIn 0.3s ease-in-out;
}

@keyframes videoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes videoFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.video-modal-content {
    background: white;
    padding: 10px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.video-modal-header {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    text-align: left;
}

.video-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: black;
}

/* Video Container */
.video-modal-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}