<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*------------------------------------
  Theme Colors (CSS Variables)
------------------------------------*/
:root {
  --bg-light: #f4f6f6;
  --bg-black: #000000;
  --bg-dark: #243346;
  --bg-orange: #FF9900;
  --highlight: #F39C12;
  --text-dark: #000000;
  --text-gray: #333333;
  --gray-accent: #CCCCCC;
  --blue-accent: #0099FF;
  --white-bright: #ffffff;
  --gold-accent: #fda83c;
  --gray: #CCCCCC;
}
.section {
  display: flex;
  width: 100%;
  padding: 20px;
  background: var(--bg-light);
}

.section-orange { 
  display: flex;
  width: 100%;
  background: var(--bg-orange); }

.section-blue {
  display: flex;
  width: 100%;
  background: var(--blue-accent); /* ✅ Fixed closing parenthesis */
}

.section-black {
  display: flex;
  width: 100%;
  background: var(--bg-black);
}

.section-dark {
  display: flex;
  flex-direction: column;
  overflow: visible;
  width: 100%;
  background: var(--bg-dark);
  align-items: center;
  justify-content: center;
}

.section-highlight {
  display: flex;
  width: 100%;
  background: var(--highlight);
}

.section-gray {
  display: flex;
  width: 100%;
  background: var(--gray);
}

.section-gold {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: var(--gold-accent);
}

/*------------------------------------
  Global Reset &amp; Base Styles
------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-light);
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

img, object, embed, video {
  max-width: 100%;
  height: auto;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--gray);
}

/*------------------------------------
  Typography
------------------------------------*/
h1 { font-size: 1.25em; font-weight: 700; }
h2 { font-size: 1.25em; font-weight: 600; }
h3 { font-size: 1.15em; font-weight: 500; }
h4 { font-size: 1em; font-weight: 400; }
h5 { font-size: 1em; font-weight: 300; }
h6 { font-size: 1em; font-weight: 300; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em 0;
  color: var(--text-dark);
}

.text-big-bold { font-size: 18px; color: var(--text-dark); }
.text-bold { font-size: 16px; color: var(--text-dark); }
.text-small { font-size: 12px; color: var(--text-dark); }
.text-blue-12-bold { font-size: 12px; color: var(--blue-accent); }
.text-blue-medium-bold { font-size: 14px; color: var(--blue-accent); }
.text-white-extra-small { font-size: 9px; color: var(--white-bright); }
.text-white-small-bold { font-size: 12px; font-weight: bold; color: var(--white-bright); }
.text-white-bold, .text-blue-bold, .text-gold-bold, .text-medium-bold { font-size: 16px; font-weight: bold; }
.text-white-bold { color: var(--white-bright); }
.text-blue-bold { color: var(--blue-accent); }
.text-gold-bold { color: var(--gold-accent); }
.text-blue-small-bold { font-size: 9px; font-weight: 500; color: var(--blue-accent); }
.text-light { font-size: 12px; font-weight: 100; color: var(--text-gray); }
.text-large-bold { font-size: 24px; font-weight: bold; color: var(--text-gray); }
.text-light-gray { font-size: 12px; font-weight: bold; color: #999999; }
.text-center { text-align: center; }


/*------------------------------------
  Layout Containers
------------------------------------*/
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}

.gridContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  text-align: center;
  gap: 1rem;
}


/*------------------------------------
  Flex Grid System
------------------------------------*/
.flex-grid {
  display: flex;
  flex-direction: column;
  overflow: visible;
  gap: 1rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 1rem;
}

.flex-row.fullscreen {
  justify-content: flex-start;
  gap: 0;
}

.flex-item {
  display: flex;
  flex-direction: column; /* optional, depending on content */
  margin: 0; /* prevent horizontal centering from interfering */
   border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
  width: 100%; /* ✅ Ensures full width inside the column class */
  max-width: 100%; /* optional */
  padding: 0.75rem;
  justify-content: center;
   align-self: stretch;
}

.flex-item.center-content {
  display: flex;
  justify-content: center;   /* Center horizontally */
  align-items: center;       /* Center vertically */
  min-height: 100%;          /* Allow full height fill from parent */
}

.ticket-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  padding: .5rem;
  margin: 0;
  background: var(--gray-accent);
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow-x: auto;
  height: auto;
  overflow-wrap: break-word;
  justify-content: center;
}

.ticket-box-blue {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: .5rem;
  margin: 0;
  background: var(--gray-accent);
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow-x: auto;
  height: auto;
  justify-content: center;
}

.ticket-box-gray {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: .5rem;
  margin: 0;
  background: var(--gray-accent);
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow-x: auto;
  height: auto;
  justify-content: center;
}

.theater-card {
  flex: 1 1 22%;
  max-width: 22%;
  padding: 1rem;
  background: #fff;
  border: 2px solid #FFCC66;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .theater-card {
    flex: 1 1 48%;
    max-width: 48%;
  }
}

@media (max-width: 480px) {
  .theater-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.theaters-info {
	padding: 1rem; 
	background: #fff; 
	border: 3px solid #FFCC66; 
	width: 96%; 
	margin: 0 auto; 
}

 @media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .theater-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
 
/* RESPONSIVE MOBILE VIEW *//*--This Might Not Work--*/
@media (max-width: 768px) {
  .theater-card {
    flex: 1 1 100%;
  } 
}

.flex-item:empty, .flex-item.col-1-5:empty {
  display: none;
  border: none;
  background-color: transparent;
}

/*------------------------------------
  Column Utilities (1–10 Columns)
------------------------------------*/
.col-1-1  { flex: 0 0 100%; max-width: 100%; }
.col-1-2  { flex: 0 0 48.0%; max-width: 48.0%; }
.col-1-3  { flex: 0 0 33.33%; max-width: 33.33%; }
.col-1-4  { flex: 0 0 24.0%; max-width: 24.0%; }
.col-1-5  { flex: 0 0 18.45%; max-width: 18.45%; }
.col-1-6  { flex: 0 0 16.66%; max-width: 16.66%; }
.col-1-7  { flex: 0 0 14.0%; max-width: 14.0%; }
.col-1-8  { flex: 0 0 12.5%; max-width: 12.5%; }
.col-1-9  { flex: 0 0 11.11%; max-width: 11.11%; }
.col-1-10 { flex: 0 0 10%; max-width: 10%; }

/* Desktop (Medium screen, 992px to 1290px) - 7 columns */
@media (max-width: 1290px) {
  .col-1-7 {
    flex: 0 0 14.0%;
    max-width: 14.0%;
	padding: 0.25rem;
    margin: 0;
  }
}

/* Tablet (Medium screen, 992px and lower) - 3 columns */
@media (max-width: 992px) {
  .col-1-5 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

/* Small Tablet / Large Mobile (768px and lower) - 2 columns */
@media (max-width: 768px) {
  .col-1-5 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 736px) and (orientation: landscape) {
  .flex-item,
  .theater-card {
    padding: 0.75rem;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .ticket-box, .ticket-box-blue, .ticket-box-gray {
    flex: 1 1 48%;
    max-width: 48%;
    padding: 0.75rem;
    margin: 0;
  }
}


/* Mobile Phones (480px and lower) - 1 column */
@media (max-width: 480px) {
  .col-1-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*------------------------------------
  Responsive Media Queries
------------------------------------*/
@media (max-width: 1290px) {
  .gridContainer { padding: 0.25rem; }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .theater-card {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

@media (max-width: 768px) {
  /* Flex grid adjustments */
  .col-1-5 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .col-1-7 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  [class^="col-1-"], [class*=" col-1-"] {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
  /* Flex item and ticket-box adjustments */
    
  .flex-item {
    width: 100%;
	 padding: 0;
  }
  
  .flex-item.ticket-box {
  min-height: 250px; /* Optional to ensure space on load */
}

  .ticket-box, .ticket-box-blue, .ticket-box-gray {
    padding: .5rem;
  }
}

/* Mobile (480px) - 1 column */
@media (max-width: 480px) {
	
  [class^="col-1-"], [class*=" col-1-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .theater-card, .flex-item, .ticket-box, .ticket-box-blue, .ticket-box-gray  {
    flex: 1 1 100%;
    max-width: 100%;
  }
 
   .theater-card {
    flex: 1 1 48%;
    max-width: 48%;
    margin-bottom: 1rem;
  }
  
    .col-1-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) and (orientation: landscape) {
  .nav-links { top: 40px; }
}

@media (max-width: 768px) {
  .ticket-box-4-Tbox-img {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 480px) {
  .ticket-box-4-Tbox-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .ticket-box, .ticket-box-4-Tbox {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .text-big-bold {
    font-size: 16px;
  }
}
/*------------------------------------
  Utility Classes
------------------------------------*/
.box {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: .5rem;
  background-color: #ffffff;
  border: 0;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
}

.center-screen {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* allow children to fill */
  justify-content: flex-start;
  width: 100%;
}

.center-content { 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	}

.left-content { 
   display: flex; 
   justify-content: flex-start; 
   align-items: flex-start; 
   }

.justify-left { 
   text-align: left; 
   }


.justify-right { text-align: right; }


.justify-center {
  text-align: center;
}

.full-width {
  width: 100%;
}

.AJXCSSMenuHLeHUZA {
  width: 100%;
}

.border { border: 4px groove var(--gray); }
.shadow-md { box-shadow: 0 8px 5px #999; }
.shadow-container { filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.5)); display: flex; width: 100%; height: 100%; }


.full-screen {
  width: 100%;
  height: auto; /* Keep this unless full height is required */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Margin and Padding Utilities */
.mt-1 { margin-top: 0.5rem; } 
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; } 
.mb-2 { margin-bottom: 1rem; }
.pt-1 { padding-top: 0.5rem; } 
.pt-2 { padding-top: 1rem; }
.pb-1 { padding-bottom: 0.5rem; } 
.pb-2 { padding-bottom: 1rem; }

/* Padding Top (pt) */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 4px; }
.pt-2 { padding-top: 8px; }
.pt-3 { padding-top: 12px; }
.pt-4 { padding-top: 16px; }
.pt-5 { padding-top: 20px; }

/* Padding Bottom (pb) */
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 4px; }
.pb-2 { padding-bottom: 8px; }
.pb-3 { padding-bottom: 12px; }
.pb-4 { padding-bottom: 16px; }
.pb-5 { padding-bottom: 20px; }

/* Padding Left (pl) */
.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 4px; }
.pl-2 { padding-left: 8px; }
.pl-3 { padding-left: 12px; }
.pl-4 { padding-left: 16px; }
.pl-5 { padding-left: 20px; }

/* Padding Right (pr) */
.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 4px; }
.pr-2 { padding-right: 8px; }
.pr-3 { padding-right: 12px; }
.pr-4 { padding-right: 16px; }
.pr-5 { padding-right: 20px; }

/*------------------------------------
  Visibility Helpers
------------------------------------*/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/*------------------------------------
  Dark Mode Support
------------------------------------*/
@media (prefers-color-scheme: dark) {
  body { background-color: var(--bg-dark); color: #ffffff; }
  .section { background-color: #2f2f2f; }
  .text-light-gray { color: #999999; }
}

/*------------------------------------
  Widget Overrides
------------------------------------*/
.tner-container, .tner-list-container {
  display: block !important;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  padding: 1rem !important;
  box-sizing: border-box;
  margin: 0 auto;
  min-height: 250px !important;
}

.tns3-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
 min-height: 250px;
  width: 100%;

  margin: 0 auto;
  justify-content: center;
  padding: 1rem;
  min-height: auto !important;
  background-color: #0077FF;
  color: #ffffff;
}

.tns3-search-container {
  display: flex;/* TEST */
  flex-direction: column;/* TEST */
  align-items: center;width: 100%;/* TEST */
  max-width: 100%;
  min-height: 30px;
 
}

.shadow-img, .buy-button, .box-shadow-img, img.show-image, img.buy-button-img, img.shadow-img {
  box-shadow: 0 8px 4px #303030;
  border: 0;
  width: 100%;
  margin-top: 8px;
}

.button-image, .buy-button-img {
  width: auto; /* or a fixed width like 80px if needed */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Optional: center the image */
  box-shadow: 0 6px 4px #000;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 4px #000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #f8f8f8;
  position: absolute;
  gap: 1rem;
  top: 60px;
  right: 10px;
  list-style: none;
  border: 1px solid #ccc;
  padding: 1rem;
  z-index: 1000;
}

.menu-icon { display: block; }
.nav-links.show { display: flex; }

#scrollToTopButton {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  font-size: 14px;
  background-color: #fda83c;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  z-index: 9999;
}

#scrollToTopButton:hover {
  background-color: #ffcc66;
  color: black;
}

.full-bleed {
  width: 100%;
  margin: 0 auto;
}

/*--Clarify 4 Column Flex Box rendering*/
@media (max-width: 768px) {
  .col-1-4 { flex: 0 0 48%; max-width: 48%; }
}

@media (max-width: 480px) {
  .col-1-4 { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 768px) {
  .flex-item, .box  {
    width: auto;
  }
}

@media (max-width: 480px) {
  .ticket-box, .ticket-box-blue, .ticket-box-gray, .box {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
/*--End High priority override for smaller screens (Remove if needed)--*/  

@media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .ticket-box, .ticket-box-blue, .ticket-box-gray {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    padding: 0.75rem;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .flex-item.auto-width {
    flex: 1 1 calc(100% / 4 - 0.5rem); /* 4 per row on tablets */
    max-width: calc(100% / 4 - 0.5rem);
  }
}

@media (max-width: 768px) {
  .flex-item.auto-width {
    flex: 1 1 calc(100% / 2 - 0.5rem); /* 2 per row on phones */
    max-width: calc(100% / 2 - 0.5rem);
  }
}

@media (max-width: 480px) {
  .flex-item.auto-width {
    flex: 1 1 100%; /* 1 per row on very small screens */
    max-width: 100%;
  }
}

/*--End High priority override for smaller screens (Remove if needed)--*/  

@media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .ticket-box, .ticket-box-blue, .ticket-box-gray {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    padding: 0.75rem;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .flex-item.auto-width {
    flex: 1 1 calc(100% / 4 - 0.5rem); /* 4 per row on tablets */
    max-width: calc(100% / 4 - 0.5rem);
  }
}

/* Social Media Grid Base */
.social-grid {
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1024px;
}

.social-item {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Social Icon Style */
.social-icon {
  width: 60px;
  height: 60px;
  display: block;
}

/* --- Media Queries --- */

/* iPhone Landscape (max 736px width) */
@media (max-width: 736px) {
  .social-item {
    flex: 0 0 27%;
    max-width: 27%;
  }
}

/* Mobile Portrait (max 480px width) */
@media (max-width: 480px) {
  .social-item {
    flex: 0 0 28%;
    max-width: 28%;
  }
}

/* Laptops (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .social-item {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
  .social-item {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

/* Begin Footer General Styling */
.footer {
  flex-direction: column;
  padding: 20px 0;
  text-align: center;
  background-color: #222; /* Optional background color */
  color: #fff;
}
/* End Footer General Styling */

/* Begin Footer Links Section */
.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #fda83c;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
 }

.footer-links a:hover {
  color: #ffc65e;
}
/* End Footer Links Section */

/* Begin Footer Social Media Icons */
.footer-social {
  margin-bottom: 15px;
}

.footer-social a {
  display: inline-block;
  margin: 0 5px;
}

.footer-social img {
  width: 30px;
  height: 30px;
 
}

.footer-social img:hover {
  transform: none;
}
/* End Footer Social Media Icons */

/* Begin Footer Copy Section */
.footer-copy {
  font-size: 14px;
  color: #ddd;
  margin-top: 10px;
}

.footer-copy p {
  font-size: 12px;
  color: #bbb;
  margin-top: 5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* End Footer Copy Section */

/*---Begin 4-col ticket-box Code----*/

/* Flex Grid for Ticket Boxes */
.flex-grid-4-Tbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.flex-row-4-Tbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.ticket-box-4-Tbox {
  flex: 0 0 23%; /* Slightly less than 25% to account for spacing */
  max-width: 23%;
  min-height: 150px; /* Consistent height for all ticket boxes */
  background: var(--gold-accent);
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-box-4-Tbox-img {
  flex: 0 0 23%; /* Slightly less than 25% to account for spacing */
  max-width: 23%;
  min-width: 120px;
  height: auto;
  min-height: 120px; /* Consistent height for all ticket boxes */
  background-color: var(--gold-accent); /* Fallback color */
  background-image: url('Images/Last-Minute-Concert-Page-Images/Concerts_Header.jpg'); /* Image URL must be in quotes */
  background-size: cover; /* Ensures the image covers the entire box */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image repetition */
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}

.ticket-box-4-Tbox a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}

.ticket-box-4-Tbox-img a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
}

.ticket-box:hover {
  background-color: #FFCC66;
  transform: none;
}

.ticket-box-4-Tbox:hover {
  background-color: #e9e9e9;
  transform: none;
}

.ticket-box-4-Tbox-img:hover {
 background-color: #e9e9e9;
 transform: none;
}

/* Responsive Adjustment for Smaller Screens */
@media (max-width: 768px) {
  .ticket-box, .ticket-box-4-Tbox, .ticket-box-4-Tbox-img  {
    flex: 0 0 45%;
    max-width: 45%;
    margin-bottom: 15px;
  }
}




/*--Begin TNS Widget Style CSS--*/

.tner-container {
  /* Consolidated CSS */
}
.tner-btn {
  background-color: #53dd84 !important;
}
.tner-block {
  border-radius: 2px !important;
}
.tner-day-full {
  display: none;
}
.tner-year-full {
  display: block;
}

/* NEW TNS WIDGET CSS  */

  @media (max-width: 480px) {
  .tns3-widget,
  .tns3-search-container,
  .flex-item,
  .ticket-box {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    box-sizing: border-box;
    padding: 1rem !important;
  }

   .tns3-widget form {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem;
    width: 100%;
  }
  
 .ticket-box, .tns3-widget {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.tns3-widget input[type="text"] {
    width: 90% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    font-size: 14px;
  }

 .tns3-widget button {
    width: auto;
    font-size: 16px;
  }

.text-small {
    flex-wrap: wrap;
    width: 100%;
  }

  }


/* Remove bullets from list */
.no-bullets {
  list-style: none;
  padding-left: 0; /* Optional: remove default indent */
  margin: 0;
}
/*--BEGIN MLB FLEXBOB CSS--*/
.mlb-container {
  max-width: 70%;
  margin: 0 auto;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: sans-serif;
}


.mlb-header {
  background-color: #f3f3f3;
  font-weight: bold;
  border-bottom: 2px solid #999;
}

.division-title {
  font-weight: bold;
  background-color: #eaeaea;
}

.col-division {
  flex: 1.5;
  padding-right: 8px;
}

.col-team {
  flex: 2;
  padding-right: 8px;
}

.col-year {
  flex: 1;
  text-align: right;
}

@media (max-width: 600px) {
  .flex-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .col-year {
    text-align: left;
  }
}

/* MEDIA QUERIES FOR 3 COLUMN FLEXBOX  */

/* Default: Large screens (≥ 1200px) */
@media (min-width: 1200px) {
.col-1-3 {
  flex: 0 0 32.0%;
  max-width: 32.0%;
}
}

/* Medium screens (≥ 992px and &lt; 1200px) */
@media (max-width: 1199.98px) {
  .col-1-3 {
    flex: 0 0 32.0%;
    max-width: 32.0%;
  }
}

/* Small screens (≥ 768px and &lt; 992px) */
@media (max-width: 991.98px) {
  .col-1-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Extra small screens (&lt; 768px) */
@media (max-width: 767.98px) {
  .col-1-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .flex-item,
  .ticket-box,
  .ticket-box-blue,
  .ticket-box-gray {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.center-vertical {
  display: flex;
  justify-content: center; /* optional: horizontal centering */
  align-items: center;     /* ✅ vertical centering */
  height: 100%;            /* or set to a specific height */
}
/*--END MLB FLEXBOB CSS--*/

/*   Begin Table Based Listing CSS  */

.mlb-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.mlb-table th, .mlb-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #ccc;
}

.mlb-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}
/* End Table Based Listing CSS  */</pre></body></html>