/* General Reset */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

/* Outer container */
#content {
    margin-top: 40px;
    background-color: #f9f9f9;
    border: 5px solid #add8e6; /* light blue border */
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Page Heading */
#banner {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Video Styling */
video {
    max-width: 75%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Table Styling */
table {
    margin: 0 auto;
    background-color: #333;
    color: white;
    border-radius: 20px;
    padding: 15px;
    border-collapse: collapse;
    width: 70%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Header row */
table thead th {
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px;
    text-align: left;
}

/* Table rows */
table td {
    padding: 10px 20px;
}

/* Italicize time values */
table td:first-child {
    font-style: italic;
    font-weight: bold;
}
