html, body{
    width:100%;
    height:100%;
}

/* Add a black background color to the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: ghostwhite;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav h2{
      font-size: 17px;
    text-decoration: none;
    text-align:center;
}

/* Style the "active" element to highlight the current page */
.topnav a.active {
  background-color: #2196F3;
  color: white;
}

.topnav button.active{
   background-color: #2196F3;
  color: white; 
}

/* Style the search box inside the navigation bar */
.topnav input[type=text] {
  float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 15px;
}

.input{
float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 15px;
}

.playlistp{
    float: right;
    padding-right: 20px;
}

/* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
@media screen and (max-width: 600px) {
  .topnav a, .topnav input[type=text]{
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;
  }
}

.tabs{
    overflow-x: hidden;
    overflow-y:scroll;
    background-color: floralwhite;
    padding:10px;
    width: 153px;
    height: 396px;
    max-height: 100%;
    float:left;
}
.tabs video{
    max-width: 100%;
    max-height: 100%;
    display: block;
    padding-bottom: 10px;
}

.interactArea{
    position: relative;
    width:auto;
    height:400px;
    background-color: indianred;
    display: inline-block;
}
.playlistArea{
    width: auto;
    height: auto;
    background-color: bisque;
}

 .playButton{
     display: inline;
     width:49px;
    
}
.play button{
    float:right;
    position: relative;
}

.timelineArea{
    min-height: 265px;
    height: auto;
    width: auto;
    background-color: darkgrey;
    display:block;
}
.timelineArea button{
    position: static;
    float: right;
}

.searchInput input{
    display: block;
    box-sizing: border-box;
    vertical-align: middle;
}
#timeArea{
    position:static;
    min-width: 100px;
    min-height:  200px;
    width: auto;
    height: auto;
    background-color: coral;
    display:inline-block;
}
#timeArea video:active, video:hover{
    background-color: dodgerblue;
    
}

#pButton:hover, #pButton:active{
    background-color: darkgrey;
}