﻿
body {
    padding-top: 50px;
}

.main-template {
    padding: 40px 15px;
    text-align: center;
}

.Pointer {
    cursor: pointer;
}

.BgWhite {
    background-color: White;
}

div#MasterButtonLeft {
    float: left;
}

div#MasterButtonRight {
    float: right;
}

.ErrorMessage {
    color: Red;
}

.UpperCase {
    text-transform: uppercase;
}

/* frmMain */
.FrontPageLinks {
    font-size: large;
}

/* View Booking Page */

tr.ViewBookingTableRow {
    height: 10px;
    background-color: #FFFFF0;
}

td.ViewBookingTableHeading {
    text-align: center;
}

tr.ViewBookingTableRowSplitter {
    height: 2px;
}

tr.ViewBookingTableRowSplitterGray {
    height: 2px;
    background-color: gray;
}

td.ViewBookingTableCellSession {
    background-color: thistle;
    border: 2px solid;
    border-color: white;
    padding: 8px;
    cursor: pointer;
}

td.ViewBookingTableCellSessionGuest {
    background-color: lightcoral;
    border: 2px solid;
    border-color: white;
    padding: 8px;
    cursor: pointer;
}

td.ViewBookingTableCellSessionOwn {
    background-color: #66CCFF;
    border: 2px solid;
    border-color: white;
    padding: 8px;
    cursor: pointer;
}

td.ViewBookingTableCellSessionBookedNoClick {
    background-color: thistle;
    border: 2px solid;
    border-color: white;
    padding: 8px;
}

td.ViewBookingTableCellSessionClubBookedNoClick {
    background-color: lightgreen;
    border: 2px solid;
    border-color: white;
    padding: 8px;
}

td.ViewBookingTableCellSessionGuestBookedNoClick {
    background-color: lightcoral;
    border: 2px solid;
    border-color: white;
    padding: 8px;
}

td.ViewBookingTableCellSessionPast {
    background-color: lightgray;
    border: 2px solid;
    border-color: white;
    padding: 8px;
}

td.ViewBookingTableCellSessionUnavailable {
    background-color: lightgray;
    border: 2px solid;
    border-color: white;
    padding: 8px;
}

td.ViewBookingTableCellSessionAvailable {
    background-color: lightcyan;
    border: 2px solid;
    border-color: white;
    padding: 8px;
    cursor: pointer;
}


@media only screen and (max-width: 767px) {

    /* Force table to not be like tables anymore */
    #reactive-table table,
    #reactive-table thead,
    #reactive-table tbody,
    #reactive-table th,
    #reactive-table td,
    #reactive-table tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #reactive-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #reactive-table tr {
        border: 1px solid #ccc;
    }

    #reactive-table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

        #reactive-table td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
        }

        /*
	Label the data
	*/
        #reactive-table td:before {
            content: attr(data-title);
        }

    .glyphicon-sort {
        color: none;
    }
}

@media only screen and (min-width: 768px) {

    .glyphicon-sort {
        color: darkgray;
    }
}
