/* Estilos principales para el plugin Carreras de Caballos en Vivo */
.clubpro-turf-live-container {
    max-width: 100%;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clubpro-turf-live-message {
    padding: 15px;
    background: #ffeb3b;
    color: #333;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.clubpro-turf-live-player {
    display: flex;
    flex-direction: column;
}

.clubpro-turf-live-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.clubpro-turf-live-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.clubpro-turf-live-no-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    font-size: 1.2em;
}

.clubpro-turf-live-info {
    padding: 15px;
    background: white;
}

.clubpro-turf-live-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.4em;
}

.clubpro-turf-live-channel {
    display: flex;
    align-items: center;
}

.clubpro-turf-live-channel-name {
    font-size: 1.1em;
    color: #666;
}

.clubpro-turf-live-error {
    padding: 20px;
    background: #ffebee;
    color: #c62828;
    text-align: center;
    border-radius: 4px;
    margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clubpro-turf-live-title {
        font-size: 1.2em;
    }
    
    .clubpro-turf-live-channel-name {
        font-size: 1em;
    }
}