.media-preview {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-top: 10px;
}

.media-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.media-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#jsonOutput, #tenantMappingOutput, #baseFeedOutput, #tenantConfigOutput, #categoriesOutput {
    max-height: 400px;
    overflow-y: auto;
}

.sticky-top {
    top: 20px;
}

.preview-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
    font-style: italic;
}

.duration-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
} 