.video-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 15px;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-item video {
    width: 100%; /* Ensure video fills the width of the container */
    height: 200px; /* Adjust height based on the video's aspect ratio */
    background-color: black;
}

.caption {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 4px;
    margin-right: 4px;
    font-size: 14px; /* Adjust font size as needed */
    background-color: white;
}

.reportlink {
    visibility: hidden;
    align-self: flex-end;
}

.video-item:hover .reportlink {
    visibility: visible;
}

.reportlink a {
    text-decoration: none;
    font-size: 16px;
    color: #0073e6;
}
