﻿.toggleSwitchButton {
      background-color: #1344b9; 
          border: none;
    border-radius: 8px;
    color: white;
}

#content {
    padding: 30px 0 0px 0;
}

.searchTickets {
    width: 300px;
    height: 60px;
    background-color: #09225e;
    box-shadow: 0px 10px 14px -7px #051d57;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.btnSpace {
    margin-top: 15px;
    margin-bottom: 15px;
}

.ticketErr {
    
    margin-top: 10px;
}

.tickResult {
    text-align: center;
    
}

.tickHide {
    display: none;
}



.ticketIDInput {
    min-width: 300px;
    max-width: 400px;
}

.ticketNumInput {
    min-width: 300px;
    max-width: 400px;
}

.ticketSearchInput{
    text-align: center;
}

.ticketSearchOutput {
    padding: 10px 10px 10px 10px;
}


table { 
  width: 100%; 
  border-collapse: collapse; 
}
/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #eee; 
}
th { 
  background: #333; 
  color: white; 
  font-weight: bold; 
}
td, th { 
  padding: 6px; 
  border: 1px solid #ccc; 
  text-align: left; 
}

@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 the Table headers if it reaches certain limit and align rows*/
    th {
        display: none;
    }
	
	/* 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%; 
	}
	
	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
	*/
    
    #ticketInfoTable table td:nth-of-type(1):before { content: "Status"; }
	#ticketInfoTable table td:nth-of-type(2):before { content: "State"; }
	#ticketInfoTable table td:nth-of-type(3):before { content: "Ticket Number"; }
    

    #memoTable table td:nth-of-type(1):before { content: "Submitted By"; }
	#memoTable table td:nth-of-type(2):before { content: "Date Submitted"; }
	#memoTable table td:nth-of-type(3):before { content: "Message"; }

}

/*Adjsutments*/
@media only screen and (max-width:450px) {
    .extra-links a {
        margin: 0;
        float: none;
    }
}

@media only screen and (max-width: 800px) {
    .extra-links a {
        margin: 0;
        float: none;
    }
}
