.tv-schedule-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.schedule-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.schedule-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

@media (max-width: 599px) {
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.schedule-time {
    width: 100px;
    font-size: 14px;
}
.schedule-details {
    display: flex;
    align-items: center;
    flex: 1;
}

@media (max-width: 599px) {
    .schedule-details {
        flex-wrap: wrap;
    }
}

.schedule-details img {
    width: 134px;
    height: 75px;
    margin-right: 15px;
    border-radius: 5px;
}

.schedule-details img.placeholder-thumbnail {
    filter: invert(1);
    background-color: #f0f0f0;
    padding: 10px;
    object-fit: contain;
}

@media (max-width: 599px) {
.schedule-details img {
    margin-top: 5px;
    margin-bottom: 9px;
    width: auto;
    height: auto;
}

.schedule-details img.placeholder-thumbnail {
    width: 134px;
    height: 75px;
}
}

.schedule-text h3 {
    margin: 0;
    font-size: 18px;
}
.schedule-text p {
    margin: 5px 0;
    font-size: 14px;
    margin-bottom: 0 !important;
}

.schedule-item {
    position: relative;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}
.on-now {
    border: 2px solid red;
}
.on-now-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    background: red;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

@media (max-width: 599px) {
    .on-now-badge {
        position: relative;
        top: 0px;
        left: 0px;
        margin-bottom: 5px;
    }
}
