.page-header {
    font-size: 2.0rem;
    color: white;
    text-align: center;
    background-color: #003388;
    /*padding: 1.1rem;*/
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    margin: 0 20px;
    width: 500px;
    border-bottom: 3px solid #FF9E1B;
}

.video-table-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    margin: 20px 0;
}

.video-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 20px 0;
}

.video-table thead th {
    background-color: #f5f5f5;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.video-table tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}


.video-table tbody tr:hover {
    background-color: #f9f9f9;
}


/* Let the video and class names take up available space */
.video-table td:nth-child(2) {
    width: 40%; /* Takes up 40% of the table width */
    min-width: 150px; /* But never smaller than this */
}
.video-table td:nth-child(3) {
    width: 30%; /* Takes up 30% of the table width */
    min-width: 120px;
}

/* Force the Date and Status columns to be as narrow as their content allows */
.video-table td:nth-child(4),
.video-table td:nth-child(5) {
    width: 1%;
    white-space: nowrap; /* This is OK here because these cells are small */
}

.video-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0066cc;
    transition: color 0.2s;
}

.video-link:hover {
    color: #004499;
    text-decoration: underline;
}

.video-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.video-icon img {
    height: 16px;
    width: auto;
}

.date-cell {
    white-space: nowrap;
    color: #666;
}
