body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

#tv-container {
    position: relative;
    width: 100%;
    padding-top: 80%; /* 16:9 aspect ratio */
    background-image: url('https://cdn1.videobyte.com/ads/ctv-mock-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    float: left;
}

#tv-container video {
    position: absolute;
    top: 34.5%;
    left: 26.2%;
    width: 50.1%;
    height: 35.3%;
    object-fit: contain;
    background-color: #000;
}

.play-pause-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
}


.extra-info-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
}


#info-container {
    position: fixed;
    bottom: 60px;
    left: 20px;
}

.info {
    background-color: black;
    color: white;
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}
