/* 
Generic Styling, for Desktops/Laptops 
*/
table {
    width: 100%;
    border-collapse: collapse;
}

/* Zebra striping 
tr:nth-of-type(odd) {
    background: #000000 !important;
}
*/





th {
   text-shadow: 1px 1px 2px red;
    color: white !important;
    font-weight: bold !important;
    font-size: 18px;
}


th {
    padding: 6px !important;
    border-bottom: 3px solid #f42400 !important;
    text-align: left;
    color:#f42400;
}



td {
    padding: 5px !important;
    text-align: left;
}

a.gigpress-tickets-link {
    font-weight: bold;
    text-transform: uppercase;
    background: #f42400;
    padding: 3px 7px;
    color: white;
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    width: 135px;
}

/*  CAL Ticket WIP
td.gigpress-ticket_link {	
    background-image: url("../images/buy-tickets.png"); 
    width: 155px;
    text-align: center;
    color:#cd2c2c;
    height: auto;
    background-size: contain;
    display: block;
    background-repeat: no-repeat; 
}
*/

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) 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 {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50% !important;
    }

    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;
    }

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

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

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

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

    td:nth-of-type(5):before {
        content: "Buy Tickets:";
    }

    
}