body {
    font-family: sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

#videoGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.videoSlot {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: black;
    overflow: hidden;
    border-radius: 12px;
}

.videoSlot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  background: black;
}


 video::before {
    content: "🔲 No video";
    color: white;
    background: black;
    font-size: 20px;
    display: block;
    position: absolute;
    top: 40%;
    left: 35%;
  }


.nameTag {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2px 6px;
    font-size: 0.9em;
    border-radius: 6px;
}
