﻿body {
}
/* The beige background box */
.card-container {
    background-color: #fcf8e3; /* Match your light yellow/beige color */
    border: 1px solid #ccc;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the video horizontally */
    justify-content: center;
    width: 100%;
    max-width: 500px; /* Adjust to match your design width */
    box-sizing: border-box;
}

/* Wrapper to constrain the video size */
.video-wrapper {
    width: 100%;
    max-width: 400px; /* Controls the maximum width of the video */
    margin-top: 15px;
}

    /* Ensures the video stays inside its wrapper boundaries */
    .video-wrapper video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 4px; /* Optional: smooth corners */
    }
