/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

.btn-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px;
}
.btn-bar a {
	padding: 15px 25px;
	margin: 10px 90px;
	font-size: 21px;
    font-weight: 500;
    border-radius: 32px;
}

.region {
	color: #36504b;
}

h2.ds-underline, h3.ds-underline  {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: 500;
	border-bottom: 2px solid;
	text-transform: uppercase;
}

.diningOption .accordion {
	padding: 0px 15px;
	background-color: transparent;
	border-radius: 0px;
	width: 104%;
}
	
.diningOption .accordion::before {
	left: 15px;
	right: 100%;
	width: 25%;
	border-radius: 0;
	background-color: #fff;
	background-image: url('https://www.uvu.edu/dining/images/info-default.png');
	background-repeat: no-repeat;
	background-position: center center;
	content: '';
	color: #787878;
	height: 82px;
}

.diningOption .accordion:hover::before {
	color: #0d3e3b;
	background-image: url('https://www.uvu.edu/dining/images/info-hover.png');
}
	
.diningOption .accordion.open::before {
	background-image: url('https://www.uvu.edu/dining/images/info-open.png');
}

.diningOption .accordion:after {
    content: '';
    background-color: transparent !important;
}

.diningOption .accordion img {
    width: 100%;
}

.row.iconTable > div span {
	align-self: center;
}

.row.iconTable > div span:first-of-type {
	width: 50px;
}

.iconTable > div {
	align-items: center;
}

.iconTable img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-right: 10px;
}

.diningIcons img {
	margin: 0 5px;
}

.button-border {
	border-color: #004c48;
	background-color: #fff;
	color: #004c48;
	font-weight: 600;
}

.button-border:hover {
	color: #fff;
	background-color: #004c48;
}
.protocol-table tr td {
	padding: 20px;
}

.table-hours tr td {
	padding: 20px;
}

.food-truck-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    column-gap: 130px;
    row-gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.food-truck-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.food-truck-list li {
    padding: 5px 0; /* Adds vertical padding for better spacing */
}

@media (max-width: 768px) {
    .food-truck-container {
        grid-template-columns: repeat(2, 1fr); /* Two equal columns for smaller screens */
    }
}



/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {


	
	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {


	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

	
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
