/* Unified Channel Finder CSS - Enhanced with unique prefixes */
.ucf-channel-finder {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2d3748;
    overflow: hidden;
}

.ucf-channel-header {
    text-align: center;
    padding: 40px 30px 30px;
    position: relative;
    margin-bottom: 35px;
}

.ucf-channel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00a390, #a4dad8);
    border-radius: 2px;
}

.ucf-channel-header h2 {
    color: #2d3748;
    margin: 0 0 8px 0;
    font-size: 2.2em;
    font-weight: 700;
    background: linear-gradient(135deg, #00a390, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ucf-channel-header p {
    color: #718096;
    font-size: 1.1em;
    margin: 0;
    font-weight: 500;
}

.ucf-channel-form {
    padding: 30px;
}

.ucf-form-group {
    margin-bottom: 20px;
}

.ucf-form-group label {
    display: block;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ucf-form-group input, .ucf-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #2d3748;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.ucf-form-group input:focus, .ucf-form-group select:focus {
    outline: none;
    border-color: #00a390;
    box-shadow: 0 0 0 3px rgba(0, 163, 144, 0.1);
    transform: translateY(-1px);
}

.ucf-form-group input::placeholder {
    color: #a0aec0;
}

.ucf-service-type-select {
    cursor: pointer;
}

.ucf-input-hint {
    display: block;
    color: #718096;
    font-size: 0.85em;
    margin-top: 5px;
    font-style: italic;
}

#ucfChannelSearchBtn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00a390, #a4dad8);
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 163, 144, 0.3);
}

#ucfChannelSearchBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 144, 0.4);
}

#ucfChannelSearchBtn:active {
    transform: translateY(0);
}

#ucfChannelSearchBtn:disabled {
    background: linear-gradient(135deg, #00a390, #a4dad8) !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 163, 144, 0.3);
    opacity: 0.8;
}

#ucfChannelSearchBtn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 163, 144, 0.3);
}

.ucf-loading-container {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

.ucf-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #00a390;
    border-radius: 50%;
    animation: ucf-spin 1s linear infinite;
    margin: 0 auto 20px;
}

.ucf-search-progress {
    max-width: 600px;
    margin: 30px auto 0;
}

.ucf-progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ucf-progress-fill {
    height: 100%;
    background: #00a390;
    width: 0%;
    animation: ucf-progress 2s ease-in-out infinite;
}

.ucf-progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #718096;
}

.ucf-step {
    transition: color 0.3s ease;
}

.ucf-step.active {
    color: #00a390;
    font-weight: 600;
}

.ucf-error-container {
    background: #fed7d7;
    border: 1px solid #feb2b2;
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
    color: #c53030;
    text-align: center;
}

.ucf-results-container {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.ucf-results-header {
    background: linear-gradient(135deg, #00a390, #a4dad8);
    padding: 25px;
    text-align: center;
}

.ucf-results-header h2 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.6em;
    font-weight: 700;
}

.ucf-results-header p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1em;
}

.ucf-quick-answer {
    background: #ffffff;
    padding: 25px;
    margin: 20px;
    border-radius: 16px;
    border-left: 4px solid #00a390;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ucf-channel-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ucf-channel-info-table th {
    background: #f7fafc;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9em;
}

.ucf-channel-info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #4a5568;
    font-size: 0.9em;
}

.ucf-channel-info-table tr:last-child td {
    border-bottom: none;
}

.ucf-channel-info-table .ucf-info-label {
    font-weight: 600;
    color: #2d3748;
    width: 40%;
}

.ucf-channel-info-table .ucf-info-value {
    color: #4a5568;
}

.ucf-quick-answer h3 {
    color: #2d3748;
    margin: 0 0 12px 0;
    font-size: 1.2em;
}

.ucf-quick-answer p {
    color: #4a5568;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.5;
}

.ucf-correction-notice {
    background: #fff3cd;
    padding: 15px;
    margin: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.ucf-channel-options {
    padding: 0 20px 20px;
}

.ucf-channel-option {
    background: #ffffff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 16px;
    border-left: 5px solid;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ucf-channel-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,163,144,0.1), transparent);
    transition: left 0.5s;
}

.ucf-channel-option:hover::before {
    left: 100%;
}

.ucf-channel-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.ucf-confidence-high { border-left-color: #48bb78; }
.ucf-confidence-medium { border-left-color: #00a390; }
.ucf-confidence-low { border-left-color: #f56565; }

.ucf-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ucf-channel-number {
    font-size: 2.2em;
    font-weight: 800;
    color: #00a390;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ucf-availability-status {
    font-size: 1.8em;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ucf-available { color: #48bb78; }
.ucf-unavailable { color: #f56565; }

.ucf-vote-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.ucf-vote-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.ucf-vote-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.ucf-vote-yes {
    background: #48bb78;
    color: white;
}

.ucf-vote-yes:hover:not(:disabled) {
    background: #38a169;
    transform: translateY(-1px);
}

.ucf-vote-no {
    background: #f56565;
    color: white;
}

.ucf-vote-no:hover:not(:disabled) {
    background: #e53e3e;
    transform: translateY(-1px);
}

.ucf-comprehensive-section {
    background: #ffffff;
    margin: 15px 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ucf-section-header {
    background: #f7fafc;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.ucf-section-header:hover {
    background: #edf2f7;
}

.ucf-section-header h4 {
    color: #2d3748;
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
}

.ucf-section-content {
    padding: 0;
    display: block;
}

.ucf-section-content.ucf-collapsed {
    display: none;
}

.ucf-chevron {
    transition: transform 0.3s ease;
    color: #00a390;
}

.ucf-chevron.ucf-down {
    transform: rotate(180deg);
}

.ucf-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px;
}

.ucf-package-item {
    background: #f7fafc;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid;
}

.ucf-package-available {
    border-left-color: #48bb78;
}

.ucf-package-unavailable {
    border-left-color: #f56565;
    opacity: 0.7;
}

.ucf-quality-badges {
    display: flex;
    gap: 10px;
    margin: 15px 20px;
    flex-wrap: wrap;
}

.ucf-quality-badge {
    background: #f7fafc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 2px solid;
    font-weight: 600;
}

.ucf-quality-badge.ucf-hd {
    border-color: #00a390;
    color: #00a390;
}

.ucf-quality-badge.ucf-uhd {
    border-color: #d69e2e;
    color: #d69e2e;
    background: #fefcbf;
}

.ucf-quality-badge.ucf-sd {
    border-color: #a0aec0;
    color: #a0aec0;
}

.ucf-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 20px;
}

.ucf-category-tag {
    background: #f7fafc;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    border: 1px solid #00a390;
    color: #00a390;
}

.ucf-call-sign {
    background: #e3f2fd;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 15px 20px;
    border-left: 4px solid #00a390;
    font-family: monospace;
    font-size: 1.1em;
    font-weight: bold;
}

.ucf-summary-content {
    padding: 20px;
}

.ucf-summary-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.ucf-bullets-container {
    background: #f7fafc;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #00a390;
}

.ucf-bullets-title {
    color: #2d3748;
    display: block;
    margin-bottom: 8px;
}

.ucf-bullets-list {
    margin: 0;
    padding-left: 20px;
    color: #4a5568;
}

.ucf-bullets-list li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.ucf-blackout-content {
    padding: 15px;
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9em;
}

.ucf-blackout-content p {
    margin: 10px 0;
}

.ucf-blackout-content strong {
    color: #2d3748;
}

.ucf-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 15px 20px;
}

.ucf-schedule-item {
    background: #f7fafc;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.ucf-schedule-time {
    font-weight: bold;
    color: #00a390;
    margin-bottom: 5px;
}

.ucf-schedule-program {
    color: #718096;
    font-size: 0.9em;
}

.ucf-streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin: 15px 20px;
}

.ucf-streaming-item {
    background: #f7fafc;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9em;
    border: 1px solid #e2e8f0;
}

.ucf-related-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 20px;
}

.ucf-related-channel {
    background: #f7fafc;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.ucf-related-channel:hover {
    background: #e2e8f0;
    border-color: #00a390;
    color: #00a390;
}

.ucf-trending-list {
    margin: 15px 20px;
}

.ucf-trending-item {
    background: #f7fafc;
    padding: 12px 15px;
    margin: 8px 0;
    border-radius: 8px;
    border-left: 3px solid #00a390;
    font-size: 0.9em;
    line-height: 1.4;
}

.ucf-trending-item strong {
    color: #2d3748;
}

.ucf-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px;
}

.ucf-info-card {
    background: #f7fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.ucf-info-card h5 {
    color: #00a390;
    margin: 0 0 10px 0;
    font-size: 1em;
}

.ucf-channel-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.ucf-meta-item {
    background: #f7fafc;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    border: 1px solid #e2e8f0;
}

.ucf-quick-search {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    backdrop-filter: blur(10px);
}

.ucf-quick-search h3 {
    color: #2d3748;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ucf-quick-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.ucf-quick-channel {
    background: #ffffff;
    padding: 12px 8px;
    border-radius: 10px;
    text-align: center;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    font-weight: 500;
    font-size: 0.9em;
}

.ucf-quick-channel:hover {
    background: #00a390;
    color: white;
    border-color: #00a390;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,163,144,0.3);
}

.ucf-search-history {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    backdrop-filter: blur(10px);
}

.ucf-search-history h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ucf-history-item {
    background: #ffffff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #00a390;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ucf-history-item:hover {
    background: #f7fafc;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ucf-history-item-content {
    flex: 1;
}

.ucf-history-item strong {
    color: #2d3748;
    display: block;
    margin-bottom: 4px;
}

.ucf-history-item small {
    color: #718096;
    font-size: 0.85em;
}

.ucf-load-more-container {
    text-align: center;
    margin-top: 20px;
}

.ucf-load-more-btn {
    background: linear-gradient(135deg, #00a390, #a4dad8);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,163,144,0.3);
}

.ucf-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,163,144,0.4);
}

.ucf-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2d3748;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 10000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left: 4px solid #00a390;
    animation: ucf-slideIn 0.3s ease;
}

.ucf-support-info {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 20px;
    border-left: 4px solid #00a390;
}

.ucf-support-info h4 {
    color: #2d3748;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.ucf-support-info p {
    margin: 5px 0;
    color: #4a5568;
}

.ucf-support-link {
    color: #00a390;
    text-decoration: none;
    font-weight: 600;
}

.ucf-support-link:hover {
    text-decoration: underline;
}

.ucf-channel-logo-container {
    text-align: center;
    margin: 20px 0;
}

.ucf-channel-logo {
    max-width: 200px;
    max-height: 100px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #f7fafc;
    padding: 10px;
    object-fit: contain;
}

.ucf-channel-logo-placeholder {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, #00a390, #a4dad8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ucf-popular-shows-content {
    padding: 20px;
}

.ucf-shows-subtitle {
    color: #718096;
    margin-bottom: 15px;
    font-style: italic;
    font-size: 0.95em;
}

.ucf-shows-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ucf-popular-show-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #00a390;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.ucf-show-title {
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ucf-show-description {
    color: #718096;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

.ucf-print-button {
    background: #00a390;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ucf-print-button:hover {
    background: #008f7c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,163,144,0.3);
}

.ucf-print-button:before {
    content: '🖨️';
}

@media print {
    .ucf-channel-finder * {
        visibility: visible;
    }
    .ucf-channel-form, .ucf-quick-search, .ucf-search-history, 
    .ucf-vote-buttons, .ucf-print-button, .ucf-section-header {
        display: none !important;
    }
    .ucf-results-container, .ucf-comprehensive-section, 
    .ucf-section-content, .ucf-channel-option {
        display: block !important;
        break-inside: avoid;
    }
    .ucf-section-content.ucf-collapsed {
        display: block !important;
    }
}

@keyframes ucf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ucf-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes ucf-slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .ucf-channel-finder {
        margin: 10px;
        border-radius: 16px;
    }
    
    .ucf-channel-header {
        padding: 30px 20px 20px;
    }
    
    .ucf-channel-header h2 {
        font-size: 1.8em;
    }
    
    .ucf-channel-form {
        padding: 20px;
    }
    
    .ucf-form-group input, .ucf-form-group select {
        padding: 12px 14px;
    }
    
    .ucf-quick-search-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .ucf-quick-channel {
        padding: 10px 6px;
        font-size: 0.85em;
    }
    
    .ucf-results-header {
        padding: 20px;
    }
    
    .ucf-results-header h2 {
        font-size: 1.4em;
    }
    
    .ucf-quick-answer {
        margin: 15px;
        padding: 20px;
    }
    
    .ucf-channel-options {
        padding: 0 15px 15px;
    }
    
    .ucf-channel-option {
        padding: 16px;
        margin: 12px 0;
    }
    
    .ucf-channel-number, .ucf-availability-status {
        font-size: 1.8em;
    }
    
    .ucf-vote-buttons {
        flex-direction: column;
    }
    
    .ucf-comprehensive-section {
        margin: 12px 15px;
    }
    
    .ucf-package-grid {
        grid-template-columns: 1fr;
        margin: 15px;
        gap: 10px;
    }
    
    .ucf-quality-badges {
        margin: 12px 15px;
    }
    
    .ucf-search-history {
        padding: 20px;
    }
    
    .ucf-loading-container {
        padding: 30px 15px;
    }
    
    .ucf-progress-steps {
        font-size: 0.8em;
    }

    .ucf-popular-show-item {
        padding: 12px;
    }

    .ucf-channel-logo {
        max-width: 150px;
    }

    .ucf-channel-logo-placeholder {
        width: 150px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .ucf-channel-finder {
        margin: 5px;
        border-radius: 12px;
    }
    
    .ucf-channel-header {
        padding: 25px 15px 15px;
    }
    
    .ucf-channel-header h2 {
        font-size: 1.6em;
    }
    
    .ucf-channel-form {
        padding: 20px;
    }
    
    .ucf-quick-search, .ucf-search-history {
        padding: 15px;
    }
    
    .ucf-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ucf-channel-number, .ucf-availability-status {
        align-self: flex-end;
    }
    
    .ucf-progress-steps {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .ucf-popular-shows-content {
        padding: 15px;
    }

    .ucf-show-title {
        font-size: 0.95em;
    }

    .ucf-show-description {
        font-size: 0.85em;
    }
}