/* Event Info Sections */
#event-info.py-5,
#event-info-1.py-5,
#event-info-2.py-5,
#event-info-3.py-5,
#event-info-4.py-5 
#event-info-5.py-5 
#event-info-6.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 0.5rem !important;
}

/* Body Style */

/* Background Light Style */

.bg-blue{
    background-color: #00ff6a !important; /* Light gray background color */
    color: #154D38; /* Dark text color for contrast */
}

body {
  background: #F5FAFA;
  color: #003a29; /* Override with desired color */
  font-family: "Libre Franklin", sans-serif;
}

p {
  color: #003a29!important; /* Override with desired color */
  font-family: "Libre Franklin", sans-serif;
}

/* Headings Style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
  color: #fff; /* Override with desired color */
}

/* Button Style */
.btn-custom {
  background-color: #00ff6a !important; /* Custom background color */
  border-color: #003a29 !important; /* Custom border color */
  border-width: 2px !important; /* Custom border width */
  padding: 10px;
  color: #003a29 !important; /* Button text color */
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700 !important;
  cursor: pointer;
  margin-bottom: 15px; /* Space below the button */
}

.btn-custom:hover,
.btn-custom:focus {
  background-color: #0e3326 !important; /* Custom background color on hover */
  color: #00ff6a !important; /* Custom border color on hover */
}

.btn-submit {
  background-color: none; /* Custom background color */
  border-color: #003a29!important; /* Custom border color */
  border-width: 2px!important; /* Custom border width */
  padding: 10px;
  color: #003a29 !important; /* Button text color */
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700 !important;
  cursor: pointer;
  margin-bottom: 15px; /* Space below the button */
}

.btn-submit:hover,
.btn-submit:focus {
  background-color: #0e3326 !important; /* Custom background color on hover */
  color: #00ff6a !important; /* Custom border color on hover */
}

/* Title Style */
.title {
  color: green;
}

/* Hero Section */

.hero-section {
  background-color: #00ff6a;
  background-size: cover;
  background-position: center;
  color: white;
  height: auto; /* Set height to 750px */
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.carousel-caption {
  bottom: 50%; /* Adjust position of captions */
  text-align: center; /* Center-align text */
}

.carousel-item img {
  object-fit: cover; /* Ensures image covers the area */
  height: auto; /* Set height to 750px */
}

/* Responsive Carousel Styles */
.carousel,
.carousel-inner,
.carousel-item,
.carousel-img {
  width: 100%;
  height: 83vh;
  min-height: 220px;
}

.carousel-img {
  object-fit: cover;
  width: 100%;
  height: 83vh;
  min-height: 220px;
  display: block;
}

@media (max-width: 991px) {
  .carousel,
  .carousel-inner,
  .carousel-item,
  .carousel-img {
    height: 45vh;
    min-height: 160px;
  }
}

@media (max-width: 575px) {
  .carousel,
  .carousel-inner,
  .carousel-item,
  .carousel-img {
    height: 45vh;
    min-height: 160px;
  }
}

/* Hotmap Image */
.hotmap {
  position: relative;
  width: 100%;
  max-width: 600px; /* Set a maximum width for the image */
  border-radius: 4px;
}


/* Hotmap Image Scaling */
.hotmap img {
  width: 100%; /* Ensure the image scales with the container */
  border-radius: 10px; /* Adjust the value to control the rounding */
  overflow: hidden; /* Ensures content inside also has rounded corners */
}

/* Hotspot Icon */
.hotspot-icon {
  position: absolute;
  width: 40px; /* Adjust size as needed */
  height: 40px; /* Adjust size as needed */
  background-image: url("img/waypoint.png"); /* Replace with your icon image */
  background-size: contain; /* Ensure the icon fits the circle */
  background-repeat: no-repeat;
  cursor: pointer;
  border: none; /* Remove border */
  transition: transform 0.2s ease-in-out; /* Smooth transition */
}

/* Hotspot Circle */
.hotspot-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0e3326 ; /* More visible red */
  cursor: pointer;
  border: 1px solid white;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  transform: translate(-50%, -50%);
}




/* Popup styling */
.hotmap-popup {
  display: none;
  position: absolute;
  background-color: #0e3326 ;
  color: #fff;
  border: none;
  padding: 5px;
  z-index: 10;
  border-radius: 8px;
  max-width: 250px;
  font-size: 14px;
}

/* Footer */
.footer-logo {
  max-width: 150px; /* Adjust logo size */
  margin-bottom: 10px;
}

footer {
  background-color: #154D38; /* Dark background */
  padding: 10px 0; /* Padding for top and bottom */
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

footer h5 {
  margin-bottom: 15px; /* Spacing between heading and links */
  text-align: left; /* Align the heading to the left */
}

footer ul {
  list-style: none;
  padding: 0;
  text-align: left; /* Align the links to the left */
}

footer ul li {
  margin-bottom: 10px; /* Spacing between list items */
}

footer .col-md-4 {
  text-align: left; /* Ensure the links are aligned to the left */
}

/* Navbar Styling */
.navbar {
    background-color: #00ff6a !important; /* Light background */
    padding: 15px 20px;
}

/* Navbar Brand */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #154D38;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #154D38;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #0e3326; /* Bootstrap primary blue */
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }
}


/* General styling for the nav dropdown */
.navbar .dropdown-menu {
  background-color: #00ff6a; /* Background color for dropdown */
  border: none; /* Remove border */
  border-radius: 0.25rem; /* Rounded corners */
  padding: 0.5rem 0; /* Spacing around dropdown items */
}

.nav-link i {
  font-size: 1.2rem;
  color: inherit; /* Inherits the color from parent */
  transition: color 0.3s ease;
}

.nav-link:hover i {
  color: #0e3326 ; /* Change to your preferred hover color */
}

/* Background color for Partners Section */
.bg-partners {
  background-color: #00ff6a; /* Light grey background, adjust the hex code for your preferred color */
  padding: 60px 0; /* Adjust the padding to create some space */
}

.sponsor-logos img {
  margin: 30px; /* Add some spacing between the sponsor logos */
  max-width: 150px; /* Set a maximum width for the logos to ensure they are uniformly sized */
}

/* Auth Modal */
#auth-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #0e3326 ;
}

 /* Image Modal styles */
 .image-modal {
  display: none;
  position: fixed;
  border-radius: 8px;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.image-modal-content {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}

.image-close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #0e3326 ;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.image-close-modal:hover,
.image-close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#auth-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-link {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

.tab-link.active {
    border-bottom: 2px solid #00ff6a;
    font-weight: bold;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.auth-form button {
    width: 100%;
    padding: 10px;
    background-color: #00ff6a;
    color: #154D38;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.auth-form button:hover {
    background-color: #758b96;
    color: #fff;
}

#login-message,
#register-message {
    margin-top: 15px;
    text-align: center;
}

/* Navbar */


/* Styling for each dropdown item */
.navbar .dropdown-item {
  color: #154D38; /* Text color */
  padding: 0.75rem 1.5rem; /* Padding around text */
  font-size: 16px; /* Font size */
  transition:
    background-color 0.3s ease,
    color 0.3s ease; /* Smooth hover transition */
}

/* Hover state for dropdown items */
.navbar .dropdown-item:hover {
  background-color: #0e3326 ; /* Background color on hover */
  color: #fff; /* Text color on hover */
}

/* Active dropdown item */
.navbar .dropdown-item.active {
  background-color: #0e3326 ; /* Background for active state */
  color: #fff; /* Text color for active state */
}

/* Card container */
.card {
  color: #154D38;
  background-color: #00ff6a; /* Light background color */
  border: 1px solid #0e3326 ; /* Subtle border */
  border-radius: 10px; /* Rounded corners */
  margin-bottom: 20px; /* Space below the card */
  text-decoration: none; /* Remove underline from links */
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out; /* Hover effect */
}

/* Card body */
.card-body {
  color: #154D38;
  padding: 20px; /* Adjust padding for the content */
  font-family: "Libre Franklin", sans-serif;
}

/* Text customization */
.card-body i b {
  font-size: 1.1rem; /* Font size for emphasized text */
  color: #0e3326 ; /* Darker color for the text */
  letter-spacing: 0.5px; /* Space between letters */
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: none; /* Stronger shadow on hover */
}

/* Optional customizations */
.card-body p {
  color: #154D38; /* Slightly muted color for paragraph text */
  line-height: 1.6; /* Increase line height for readability */
}

.card-body i {
  color: #154D38; /* Optional italic text color */
}
/* Accordion Container */
.accordion {
  margin: 20px 0; /* Margin around the accordion */
  border: 1px; /* Border around the accordion */
  border-radius: 5px; /* Rounded corners for the accordion */
}

/* Accordion Item */
.accordion-item {
  border: none; /* Remove border around each item */
}

/* Accordion Header */
.accordion-header {
  background-color: #f8f9fa; /* Background color for header */
}

/* Accordion Button */
.accordion-button {
  background-color: #fff; /* Primary button background */
  color: #fff; /* Text color for button */
  font-weight: bold; /* Make button text bold */
  border: 1px; /* Remove border */
  border-radius: 5px; /* Rounded corners for button */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  font-family: "Libre Franklin", sans-serif;
}

/* Active Accordion Button */
.accordion-button:not(.collapsed) {
  background-color: #fff; /* Darker background when active */
  color: #0e3326 ; /* Text color when active */
}

/* Accordion Button Hover State */
.accordion-button:hover {
  background-color: #fff; /* Darker background on hover */
  color: #154D38; /* Text color when active */
}

/* Accordion Button Collapsed State */
.accordion-button.collapsed {
  background-color: #f8f9fa; /* Background color when collapsed */
  color: #154D38; /* Text color when collapsed */
}

/* Custom focus style for accordion button */
.accordion-button:focus {
  outline: none; /* Remove the default outline */
  box-shadow: 0 0 0 0.2rem #fff; /* Change to your desired color */
}

/* Accordion Body */
.accordion-body {
  color: #154D38;
  padding: 15px; /* Padding inside the body */
  background-color: #fff; /* White background for body */
  border-top: 1px solid #fff; /* Top border for body */
  font-family: "Libre Franklin", sans-serif;
}

/* Strong Text in Accordion Body */
.accordion-body strong {
  color: #154D38; /* Color for strong text */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .accordion-body {
    font-size: 12px; /* Adjust body font size for smaller screens */
  }
}

.element {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.circle-black {
  background-color: #00ff6a;
}
.circle-white {
  background-color: #fff;
}

.vline {
  border-left: 3px;
  height: 5px;
}

.logo {
  width: 300px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  align-items: center;
}

.journey-section {
  padding: 20px;
  background-color: #f7f7f7;
}
.journey-title {
  text-align: left;
  color: #154D38;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.journey-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.journey-step:last-child {
  border-bottom: none;
}
.step-number {
  font-size: 18px;
  font-weight: bold;
  color: #0e3326 ;
  margin-right: 15px;
}
.step-night {
  font-size: 18px;
  color: #154D38;
  margin-right: 15px;
}
.step-details {
  flex-grow: 1;
}
.step-title {
  font-size: 18px;
  color: #154D38;
  font-weight: bold;
  margin-bottom: 5px;
}
.step-description {
  font-size: 16px;
  color: #555;
}

.top-left-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 15px; 
  background-color: rgba(167, 196, 210, 0.5);
  color: #154D38;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.top-left-btn:hover {
  background-color: rgba(167, 196, 210, 0.9);
}

/* Auth Button Styles */
#auth-button, #logout-button {
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-left: 10px;
}

#auth-button {
    background-color: #00ff6a;
    color: #154D38;
    border: 1px solid #154D38;
}

#auth-button:hover {
    background-color: #0e3326 ;
    color: #fff;
    border: none;
}

#logout-button {
    background-color: #0e3326 ;
    color: white;
    border: 1px solid #b85d23;
}

#logout-button:hover {
    background-color: #b85d23;
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    #auth-button, #logout-button {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

/* T-shirt Order Form Styles */
#tshirt-order {
    background-color: none; /* Light background color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#tshirt-order h2 {
    color: #154D38; /* Heading color */
    margin-bottom: 20px;
}

#user-info p {
    color: #154D38; /* Text color */
    margin-bottom: 10px;
}

#order-form .form-group {
    margin-bottom: 20px;
}

#order-form label {
    display: flex;
    margin-bottom: 5px;
    color: #154D38; /* Label color */
}

#order-form input[type="radio"] {
    margin-right: 10px;
}

#order-form .btn-custom {
    background-color: #0e3326 ; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#order-form .btn-custom:hover {
    background-color: #b85d23; /* Button hover background color */
}

/* Three Cards Section Styles */
#three-cards .card-link {
  display: block;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
#three-cards .card {
  height: 100%;
  min-height: 180px;
  border: none;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#three-cards .card-link:hover .card,
#three-cards .card-link:focus .card {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

/* Example background images for each card */
.card-bg-1 {
  background-image: url('../img/card1.png'); /* Replace with your image */
}
.card-bg-2 {
  background-image: url('../img/card3.png'); /* Replace with your image */
}
.card-bg-3 {
  background-image: url('../img/card2.png'); /* Replace with your image */
}

/* Four Square Cards Section */
#four-cards .four-card-link {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

#four-cards .four-card {
  width: 100%;
  height: auto;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#four-cards .four-card-link:hover .four-card,
#four-cards .four-card-link:focus .four-card {
  transform: scale(1.04);
  box-shadow: none;
}

.four-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,58,41,0.65);
  color: #00ff6a;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: opacity 0.2s;
  z-index: 2;
  pointer-events: none;
}

#four-cards .four-card-link:hover .four-card-overlay,
#four-cards .four-card-link:focus .four-card-overlay {
  opacity: 1;
  pointer-events: auto;
}

.card-bg-4 { background-image: url('../img/citidash1.png'); }
.card-bg-5 { background-image: url('../img/citidash2.png'); }
.card-bg-6 { background-image: url('../img/citidash3.png'); }
.card-bg-7 { background-image: url('../img/citidash4.png'); }
.card-bg-8 { background-image: url('../img/citidash5.png'); }

@media (max-width: 991px) {
  #four-cards .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  #four-cards .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #four-cards .four-card {
    min-height: 140px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #three-cards .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #three-cards .card-link {
    height: 180px;
  }
}
@media (max-width: 575px) {
  #three-cards .card-link {
    height: 120px;
  }
  #three-cards .card {
    min-height: 100px;
  }
}

/* Static Hero Banner Styles */
#info-hero-banner .hero-img-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6f0;
}

#info-hero-banner .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#info-hero-banner .hero-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Gradient overlay: dark green at bottom, transparent at top */
  background: linear-gradient(45deg, rgba(0,58,41,0.7) 70%, rgba(12, 204, 44, 0.2) 100%, rgba(10, 228, 46, 0) 0%);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  border-radius: none;
}

#info-hero-banner .hero-banner-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 220px;
  max-width: 80vw;
  height: auto;
  display: block;
  pointer-events: none;
}

#info-hero-banner .hero-banner-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 4;
  text-align: center;
  width: 100%;
  font-family: "Libre Franklin", sans-serif;
  pointer-events: none;
}

#info-hero-banner .hero-banner-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

#info-hero-banner .hero-banner-subheading {
  font-size: 1.7rem;
  font-weight: 800;
  color: #00ff6a;
  margin-top: 0.3em;
  letter-spacing: 2px;
  font-family: "Libre Franklin", sans-serif;
  text-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
  #info-hero-banner .hero-banner-heading {
    font-size: 1.1rem;
  }
  #info-hero-banner .hero-banner-subheading {
    font-size: 0.8rem;
  }
  #info-hero-banner .hero-banner-text {
    top: 62%;
  }
}

/* LiveXpo 6 Square Cards Section */
#livexpo-stats .stat-card {
  background: #00ff6a;
  border-radius: 14px;
  border: 2px solid #154D38;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  min-width: 100px;
  min-height: 100px;
  height: 100%;
  padding: 18px 8px;
  margin: 0 auto;
  font-family: "Libre Franklin", sans-serif;
}

#livexpo-stats .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #154D38;
  line-height: 1;
  text-align: center;
  font-family: "Libre Franklin", sans-serif;
}

#livexpo-stats .stat-label {
  font-size: 1rem;
  color: #0e3326;
  font-weight: 500;
  margin-top: 8px;
  text-align: center;
  letter-spacing: 1px;
  font-family: "Libre Franklin", sans-serif;
}

@media (max-width: 991px) {
  #livexpo-stats .stat-card {
    min-width: 80px;
    min-height: 80px;
    font-size: 1rem;
    padding: 12px 4px;
  }
  #livexpo-stats .stat-number {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  #livexpo-stats .stat-card {
    min-width: 60px;
    min-height: 60px;
    padding: 8px 2px;
  }
  #livexpo-stats .stat-number {
    font-size: 1.05rem;
  }
  #livexpo-stats .stat-label {
    font-size: 0.8rem;
  }
}

/* LiveXpo 6 Square Cards Section - Responsive Grid */
#livexpo-stats .row.g-3 > [class^="col-"] {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

@media (max-width: 991px) {
  #livexpo-stats .row.g-3 > [class^="col-"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (max-width: 767px) {
  #livexpo-stats .row.g-3 > [class^="col-"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (max-width: 575px) {
  #livexpo-stats .row.g-3 > [class^="col-"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  #livexpo-stats .stat-card {
    min-width: 0;
    min-height: 60px;
    padding: 8px 2px;
  }
  #livexpo-stats .stat-number {
    font-size: 1.05rem;
  }
  #livexpo-stats .stat-label {
    font-size: 0.8rem;
  }
}



/* Centered Heading in Carousel */
.carousel-center-heading {
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: "Libre Franklin", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #154D38;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: none;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 600px) {
  .carousel-center-heading {
    font-size: 1.7rem;
    top: 60%;
  }
}

/* Enter Now Button */
.enter-now-btn {
  background-color: #154D38 !important;
  color:  #00ff6a !important;
  border-radius: 5px;
  font-weight: 700;
  padding: 8px 22px;
  margin: 0 0 0 8px;
  border: 1.5px solid #154D38 !important;
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 1;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .enter-now-btn {
    width: 100%;
    margin: 8px 0;
    justify-content: center;
    height: auto;
    padding: 10px 0;
  }
}

.enter-now-btn:hover,
.enter-now-btn:focus {
  background-color: #0e3326 !important;
  color: #fff !important;
  border-color: #0e3326;
  text-decoration: none;
}

/* Responsive Images */
@media (max-width: 575px) {
    .image-container img {
        max-width: 100%;
        height: auto;
    }
}

/* Runner Table Styles */
#runner-table {
    font-size: 0.85rem; /* Smaller font size */
    line-height: 1.2; /* Adjust line height */
}

/* Adjust results container width */
.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure cards are displayed next to each other */
.results-grid {
    display: flex;
    height: 150px;
    flex-wrap: wrap;
    gap: 20px;
}