body
{
    background-color: #EBEBEB;
    background-color: #D93909;
    background-image: url('bg.jpg');
    background-position: center;
    color: rgba(255,255,255,0.8);
}

a
{
    /*color: #2050ff !important; */
    color: #500000;
    color: white;
    font-weight: bold;
}

#showVideoForm, #videoUpload, #logout, #loginForm, #admin
{
    background-color: white;
    color: white;
    background-color: rgba(255,255,255, 0.1);
    border-radius: 2px;
    box-shadow: 3px 3px 0px rgba(0,0,0, 0.3);
}

#videoUpload label
{
    color: white !important;
}

#uploadStatus .progress
{
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
    border-radius: 2px;
    background-color: rgba(0,0,0, 0.33);
    border: 3px solid rgba(0,0,0, 0);
}
#uploadStatus .progress .fill
{
    border-radius: 1px;
    background-color: rgba(255,255,255, 0.5);
}

#uploadStatus
{
    /*display: block !important;*/
}

#videoList
{
    border-radius: 0;
    background: none;
}

#videoList .videoItem
{
    background-color: rgba(255,255,255, 0.1);
    border-radius: 2px;
    box-shadow: 3px 3px 0px rgba(0,0,0, 0.3);
}

#videoList .videoItem .admin
{
    display: none;
    font-size: 0.8em;
    width: 30em;
}

#videoList .videoItem:hover .admin
{
    display: block;
}

#videoList .videoItem .thumbnail
{
    border: none;
    box-shadow: 3px 3px 0px rgba(0,0,0, 0.3);
}

#videoList .videoItem:hover
{
    background-color: rgba(255,255,255, 0.15);

}

#videoList .videoItem .date
{
    color: rgba(0,0,0, 0.5);
}

#videoList .videoItem .videoNotes
{
    background-color: rgba(0,0,0, 0.25);
}

#videoList .videoItem .converting
{
    // TODO: color:red is niet echt leesbaar
}

#header
{
    margin: 20px;
    
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    z-index: -1;
    /*background-color: red;*/

    background-image: url('logo.png');
    background-repeat: no-repeat;
    background-size: 10%;
}


.videoPlayer .controlBar
{
    background-image: none;
    background-color: rgba(0,0,0, 0.25);
    border-bottom: 2px solid rgba(0,0,0, 0.35);

    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius:  3px;
    -moz-border-radius-bottomright:     3px;
    -moz-border-radius-bottomleft:      3px;
    border-bottom-right-radius:         3px;
    border-bottom-left-radius:          3px;
}

.videoPlayer .controlBar .wrapper
{
    border-bottom: 3px solid purple;
    border: none;
}

.videoPlayer .videoNotes
{
    display:none;
}


