﻿body {
    width: 100%;
    font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
    color: #00B7FF;
    cursor: pointer;
}

h1 {
    color: red;
    font-weight: bold;
}


#songlistdiv {
    position: relative;
    z-index: 2;
}

/*#videodiv {
    width: 480px;
    height: 250px;
}
*/
#video1 {
    width: 100%;
    height: auto;
    object-fit: contain; /* Not necessary in Chrome */
}

#controls {
    background-color: gray;
    position: absolute;
    float: right;
    top: 50px;
}

#butgroup {
    display: block;
}

#mainTable table {
    background: white;
}

#mainTable table {
    counter-reset: -1;
}

#mainTable table tr {
    counter-increment: rowNumber;
}

#mainTable table tr td:first-child::before {
    content: counter(rowNumber);
    min-width: 1em;
    margin-right: 0.5em;
}

#mainTable table th {
    background: white;
    font-weight: 500;
    padding: 0px 0px;
    text-align: center;
    color: black;
}

#mainTable table tbody {
    padding: 0;
    margin: 0px 0px 0px 0px;
    border-collapse: collapse;
    border-spacing: 0px;
    background: khaki;

}

#mainTable table td {
    color: black;
}

#mainTable table tr:nth-child(odd) {
    color: black;
    background: lightgray;
}

#mainTable table tr:nth-child(odd) a {
    color: blue;
}

#mainTable table tr:nth-child(even) a {
    color: blue;
}


@media screen and (orientation:portrait) {

    body {
        width: 100%;
        margin: 0px 10px;
    }

    #video1 {
        width: 95%;
        height: auto;
        object-fit: contain; /* Not necessary in Chrome */
    }

}

@media screen and (orientation:landscape) {

    body {
        width: 100%;
        margin: 0px;
    }

    #controls {
        background-color: gray;
        position: absolute;
        float: right;
        top: 100px;
    }


    #video1 {
        width: 100%;
        height: auto;
        object-fit: contain; /* Not necessary in Chrome */
    }
}

@media screen and (max-width: 600px) {

    body {
        width: 100%;
        margin: 0px 5px 0px 5px;
    }

    #controls {
        background-color: lightgray;
        position: absolute;
        float: right;
        top: 50px;
    }
}
@media screen and (min-width: 600px) {

    body {
        width: 25%;
        margin: 0px 35px 0px 35px;
    }

    #controls {
        background-color: lightgray;
        position: absolute;
        float: right;
        top: 50px;
    }
}