/* Estilos para Video Programado - Broadcast Vimeo */

.bv-shortcode-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.bv-shortcode-title {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.bv-shortcode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.bv-meta-item {
    font-size: 14px;
    color: #666;
}

.bv-meta-item strong {
    color: #333;
}

.bv-access-denied {
    text-align: center;
    padding: 30px 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    margin: 20px 0;
}

.bv-access-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #ffc107;
    margin-bottom: 15px;
}

.bv-access-denied h4 {
    color: #856404;
    margin-bottom: 15px;
}

.bv-countdown-container {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.bv-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.bv-time-unit {
    text-align: center;
    min-width: 60px;
}

.bv-time-unit span {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    background: #0073aa;
    color: white;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 5px;
}

.bv-time-unit small {
    font-size: 0.8rem;
    color: #666;
}

.bv-scheduled-time {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.bv-video-wrapper {
    overflow: hidden;
}

.bv-vimeo-embed-container {
    background: #000;
}

.bv-live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #dc3545;
    color: white;
    font-size: 14px;
}

.bv-live-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: bv-pulse 1.5s infinite;
}

@keyframes bv-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.bv-remaining-time {
    margin-left: auto;
    font-weight: bold;
}

.bv-elapsed-time {
    margin-left: 10px;
}

.bv-no-video {
    padding: 20px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    color: #721c24;
    margin: 20px 0;
}

.bv-description {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.bv-description h4 {
    color: #333;
    margin-bottom: 15px;
}

.bv-description p {
    line-height: 1.6;
    color: #555;
}

.bv-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .bv-shortcode-container {
        padding: 15px;
    }
    
    .bv-shortcode-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .bv-countdown-timer {
        flex-wrap: wrap;
    }
    
    .bv-time-unit {
        min-width: 50px;
    }
    
    .bv-time-unit span {
        font-size: 1.4rem;
        padding: 8px;
    }
    
    .bv-live-indicator {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .bv-elapsed-time,
    .bv-remaining-time {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
}