.custom-scheduler {
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.scheduler-day {
    margin-bottom: 40px;
}

.day-header {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.scheduled-item {
    display: flex;
    background: #34495e;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.scheduled-item:hover {
    transform: scale(1.02);
}

.item-image {
    position: relative;
    width: 200px;
    height: 120px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.episode-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.episode, .time, .source {
    color: #ffffff;
    font-size: 12px;
    background: rgba(0,0,0,0.5);
    padding: 2px 6px;
    border-radius: 3px;
    align-self: flex-start;
}

.item-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.item-description {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.genre-tag {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
}

.rating-likes {
    display: flex;
    gap: 10px;
    align-items: center;
}

.rating {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.high-rating { background: #27ae60; color: white; }
.medium-rating { background: #f39c12; color: white; }
.low-rating { background: #e74c3c; color: white; }

.likes {
    color: #e91e63;
    font-size: 12px;
}

.no-content {
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .scheduled-item {
        flex-direction: column;
    }
    
    .item-image {
        width: 100%;
        height: 200px;
    }
}
