/* Video Player Component - Estilos Simples */

.video-player-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #1a1a1a;
    color: #fff;
}

.video-btn {
    background: #333;
    border: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.video-btn:hover {
    background: #444;
}

.video-progress {
    flex: 1;
    height: 6px;
    cursor: pointer;
}

.video-time {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
}

.video-volume {
    width: 80px;
    height: 6px;
    cursor: pointer;
}
