
th a, th a:link, th a:visited, th a:active, th a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

#playerarrow {
    height: auto;
    margin-bottom: -3px;
    max-height: 100%;
}

.paglinks {
    height: 16px;
    line-height: 16px;
}

.autolinks {
}

.smallassign {
    font-size: .7rem;
}

/* 
	Max width before this PARTICULAR table gets nasty
	This query will take effect for any screen smaller than 800px
	and also iPads specifically.
	*/
@media only screen and (max-width: 800px),
(min-device-width: 800px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        left: -9999px;
        position: absolute;
        top: -9999px;
    }

    #hide {
        left: -9999px;
        position: absolute;
        top: -9999px;
    }

    tr {
        border: 1px solid rgba(0, 127, 0, 1);
        display: block;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        height: 1.5rem;
        padding-left: 35%;
        position: relative;
    }

    td:before {
        /* Now like a table header */
        left: 6px;
        /* Top/left values mimic padding */
        padding-right: 10px;
        position: absolute;
        top: 6px;
        white-space: nowrap;
        width: 30%;
    }

    /*
    Label the data
    */
    td:nth-of-type(1):before {
        content: "First Name";
    }

    td:nth-of-type(2):before {
        content: "Last Name";
    }

    td:nth-of-type(3):before {
        content: "Phone";
    }

    td:nth-of-type(4):before {
        content: "Email";
    }

    td:nth-of-type(5):before {
        content: "Delete?";
    }

    td:nth-of-type(6):before {
        content: "View/Edit?";
    }

}