/* style.css for TV Guide */
/* local fonts */
@font-face {
    font-family: 'console';
    src: url('/files/assets/fonts/console.ttf') format('truetype');
}

@font-face {
    font-family: 'Videotype';
    src: url('/files/assets/fonts/videotype.ttf') format('truetype'),
}


/* General styles */
body {
    font-family: 'Videotype', cursive;
    color: rgba(225, 230, 240, 0.89);
    background-color: #05060a;
    font-size: 25px;
}

/* Fixed-size console image with clickable gif screens overlaid on top */
.console-stage {
    position: relative;
    width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.console-bg {
    display: block;
    width: 100%;
    height: auto;
}

.screen-link {
    position: absolute;
    display: block;
    overflow: hidden;
    outline: 2px solid transparent;
    transition: outline-color 0.2s ease, box-shadow 0.2s ease;
}

.screen-link:hover,
.screen-link:focus-visible {
    outline-color: rgba(225, 230, 240, 0.85);
    box-shadow: 0 0 12px rgba(225, 230, 240, 0.6);
}

.screen-link .screen-gif {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Vault screens (left monitor pair) */
.screen-video-vault {
    left: 28.31%;
    top: 63%;
    width: 14.04%;
    height: 11%;
}

/* Live Feed screen (center Sony monitor) */
.screen-live-feed {
    left: 45%;
    top: 23.67%;
    width: 14%;
    height: 14.16%;
}

/* Mr. Rental screen (VHS box art rack) */
.screen-mr-rental {
    left: 80.40%;
    top: 39.10%;
    width: 17.00%;
    height: 9.77%;
}

.tvguide-content {
    text-align: center;
}

.preview-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    background-color: #0a0007d3;
}

/* Align the table to the left */
.centered-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
}


/* Header row background color */
.centered-table thead th {
    background-color: #921a7054;
    color: #faf7f788;
    /* border: 1px hidden;  */
    line-height: 1.6;
    padding: 0px;
    text-align: center;
}

/* Alternating background colors */
.centered-table tbody tr:nth-child(odd) {
    background-color: #1123e6a8;
}

.centered-table tbody tr:nth-child(even) {
    background-color: #7cb0f3a4;
}

/* Table cell padding and border */
.centered-table th,
.centered-table td {
    padding: 1px;
    border: 1px solid #a9c9db65;
    font-size: smaller;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 28px;
    width: 4px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
}

#Webster__New_York_State_z161 {
    color: rgba(199, 223, 15, 0.479);
    text-align: center;
    align-content: center;
    align-items: center;
    display: block;
    font-size: 30px !important;
}

.previewImage {
    width: 100%;
    height: 420px;
    object-fit: cover;
    overflow: hidden;
}

.video-container {
    overflow: hidden;
    /* display: block; */
    align-items: stretch; 
    justify-content: stretch;
    width: 100%;
    height: 440px;
    overflow: hidden;
    object-fit:fill;
}

.video-container video {
    /* z-index: -1; */
    width: 100%; 
    height: 100%;
    /* object-fit: fill; */
}