html {scroll-behavior: smooth;}
    .mapContainer {
        display: flex;
        flex-wrap: wrap;
    }
    .mapLeft-div, .mapRight-div {
        box-sizing: border-box;
        padding: 20px;
    }

    .mapLeft-div {
        padding: 0px !important;
    }
    .mapRight-div {
        width: 100%;
        height: 60vh;
        min-height: 500px;
        position: relative;
    }
    .venue {
        padding: 10px;
        background-color: #f5f5f5;
        border: 1px solid #ccc;
        margin-bottom: 10px; /* Space between items for larger screens */
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .mapLeft-div .venue {
        display: none;
    }
    .mapboxgl-ctrl-bottom-left {
        display: none;
    }
    .venue:hover {
   		-webkit-box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.75);
		box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.75);
    }


    .venue-header {
        cursor: pointer;
    }

    .venue img {
        border-radius: 15px;
    }


    .venue-info {width: 100%;}

    .venue-header h6 {
        text-align: center;
        font-size: 1.5rem;
    }

    .venue-address {width: 100%; white-space: nowrap; text-align: center; font-size: 14px;}

    span.venue-time {
        font-size: 14px;
        text-align: center;
        display: block;
        color: #000;
    }

    .open-modal a {width: 100%; text-align: center;}

    .vouchure-container { }

    .vouchure-item {
        width: 32%;
        display: inline-block;
        vertical-align: top;
        padding: 10px;
        box-sizing: border-box;
    }

    .vouchure-item:empty {
        display: none;
    }

    @media screen and (max-width: 768px) {

        .vouchure-item {
            width: 100%;
            display: block;
        }
    }

    /* General styles for the checkin container */
    .checkin-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px;
        gap: 20px;
    }

    .venue-name {
        text-align: center;
        margin-top: 6px;
        color: #000;
    }

    .checkin-container .venue-thumb {
        border-radius: 12px;
        object-fit: cover;
        object-position: center center;
    }

    .venue-icon {
        position: absolute;
        top: 6px;
        right: 6px;
    }

    .venue-icon img {
        width: 40px;
    }

    .venue-container {
        position: relative;
        display: inline-block;
    }

    .ticketCard b {
        font-size: 1.125rem;
    }

    /* Individual checkin items */
    .checkin-item {
        min-width: 200px;
        background-color: #f5f5f5;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .checkin-item p {margin: 0px!important;}

    /* Scrollbar customization (optional) */
    .checkin-container::-webkit-scrollbar {
        height: 8px;
    }

    .checkin-container::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px;
    }

    .checkin-container::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

    /* Responsive styles */
    @media screen and (max-width: 767px) {
        .venue-header h6 {font-size: 1rem;}
    }


    .greenV {color: green;}
    .yellowV {color: yellow;}
    .redV {color: red;}

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
        z-index: 50;
    }

    .modal:target {display: flex;}

    .modal-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    #vouchers-modal .modal-content {
        max-width: 650px;
    }

    .modal_specials_header {
        color: var(--bs-link-color);
        font-size: 20px;
    }

    .modal_specials {

    }

    .close-modal {
        position: absolute;
        top: 20px;
        right: 20px;
        text-decoration: none;
        font-size: 24px;
        color: black;
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .close-modal:hover { color: red; }

    /* Overlay click to close modal */
    .modal::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 0;
    }

    .modal:target::before { display: block;}

    #eventMap{
		padding: 0px 20px;
	}


    /* Media query for tablet and mobile view */
    @media (max-width: 768px) {
        .mapLeft-div, .mapRight-div {
            width: 100%;
        }
        .mapLeft-div {
            order: 2;
            flex-direction: row;
            overflow-y: hidden;
            overflow-x: auto;
            gap: 10px;
            height: auto;
        }
        .mapRight-div {
            order: 1;
            height: 60vh;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
            padding: 20px 0px;
        }

        /* #eventMap{padding: 790px 0px 0px 0px;} */

        .checkin-container {
            gap: 10px;
        }

        .venue {
            display: inline-block;
            width: auto;
            min-width: 200px;
            text-align: center;
            margin-bottom: 0;
            scroll-snap-align: start;
        }

        .mapLeft-div .venue {
            display: none;
        }
    }


    .full-description{text-align: center;}

    .newContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 200px 0px 20px;
    }

    #cityState{
        text-align: center;
        display: block;
        color: #000;
        font-size: 24px;
        line-height: 2;
    }

    b#eventDate {
        text-align: center;
        display: block;
        color: #000;
        font-size: 24px;
        line-height: 2;
    }

    button.get-tickets-now-btn {
        width: auto;
        margin-top: 20px;
        padding: 10px 18px;
        font-weight: bold;
        font-size: 27px;
        text-transform: uppercase;
        background-color: #a4d577;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        box-shadow: none;
        outline: none;
    }

    b#eventTime {
        text-align: center;
        display: block;
        color: #000;
        font-size: 24px;
        line-height: 2;
    }

    #eventTitle{
    	text-align: center;
        padding: 0px 70px 0px 70px;
        font-weight: bold;
        line-height: 1.5;
    }

    @media (max-width: 1260px) {
        .newContainer {padding: 0px 0px 0px 0px!important;}
		#eventTitle{padding: 0px 0px;}
	}

    @media (max-width: 768px) {
        body.stpattys-page #eventTitle {
            padding: 0 24px;
        }
    }

    .video-block {
        position: relative;
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
    @media (min-width: 768px) {
        .video-block{height: 73vh!important;}
	}

    @media (min-width: 1600px) {
        #eventMap {
            margin-top: 50px;
        }
    }

    .columns {
        display: flex;
        position: relative;
        width: 100%;
        align-items: stretch;
    }

    .leftColumn, .rightColumn {
        box-sizing: border-box;
        padding: 20px;
    }
    .leftColumn {
        width: 61%;
        position: relative;
        height: fit-content;
    }

    .rightColumn {
        width: 50%;
        position: inherit;
        top: 0;
        right: 0;
        z-index: 1;
        margin-right: -200px;
    }


    @media (max-width: 1260px) {
		.leftColumn{width: 70%;}
        .rightColumn{width: 30%;margin-right:0px!important;}
	}

    @media (max-width: 768px) {
		.leftColumn{width: 100%; padding-bottom: 150px!important;}
        .rightColumn{width: 100%; position: relative!important;}

        #cityState{text-align: center;}
	}

    .ticketCard {
    	background-color: white;
        border-radius: 7px;
        margin-top: -100px;
        margin-right: -20px;
        padding: 20px;
    }

    .ticketCardInfo {text-align: center;}

    /* Ensure the right column doesn't go beyond the viewport */
    .rightColumn::after {
        content: "";
        display: block;
        height: 100%;
        margin-right: 200px;
    }

    @media (max-width: 768px) {
        .columns {flex-direction: column;}
        .leftColumn, .rightColumn {width: 100%;display: block;}
        .rightColumn {margin-right: 0; padding: 0px;}
        .ticketCard {height: auto; padding: 0px!important;margin-right: 0px;}
        .ticketCardInfo {text-align: center;margin-bottom: 12px;}
        .venue img {
        	max-width: 200px!important;
        	max-height: 100px!important;
        }
        .venue-address {white-space: normal!important; font-size: 12px;}
        .ticketCard b {
            margin-left: 10px;
        }
    }


.event-description {
    position: relative;
}

.read-more-btn {
    color: grey;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styling for very small screens */
@media (max-width: 480px) {
    .venue {
        width: calc(100% - 10px);
        margin-bottom: 10px;
    }
}

.pulsing-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ====================================
   MAP STYLES - Essential styles only
   ==================================== */

#map {
    width: 100%;
    height: 500px;
    position: relative;
}

/* Marker styling */
.marker {
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.marker:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}

/* Popup styling */
.mapboxgl-popup-content {
    padding: 0 !important;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.mapboxgl-popup-tip {
    display: none !important;
}

button.mapboxgl-popup-close-button {
    display: none !important;
}

/* Map overlay */
#map-overlay {
    pointer-events: none;
}

.open-popup {
    background-color: black;
}

#map-overlay.active {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000;
    z-index: 999;
    opacity: 0.8;
}

/* Popup card styling */
.venue-popup-card {
    position: relative;
    padding: 22px 26px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #fff;
    min-width: 260px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.venue-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.venue-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.venue-actions .action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

@media (min-width: 1261px) {
    .rightColumn::after {
        pointer-events: none !important;
    }
}

.admin-bar .rightColumn {
    margin-right: 0px;
}

.admin-bar .newContainer {
    padding: 0px 20px 0px 20px;
}

/* ====================================
   SPONSOR SECTION
   ==================================== */

/* Top of entire sponsor section — match <br> gap above */
section.mt-4 {
    margin-top: 1.5em !important;
    margin-bottom: -20px !important;
}

/* Each sponsor block */
.sponsor-block {
    margin-top: 0 !important;
}

.sponsor-block.mb-5 {
    margin-bottom: 1.5em !important;
    padding-bottom: 0 !important;
}

.sponsor-block:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Image column — centered */
.sponsor-block .col-md-5 {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 32px; /* space between text and slider on mobile */
}

@media (min-width: 768px) {
    .sponsor-block .col-md-5 {
        margin-top: 0px; /* side by side on desktop, no top gap needed */
    }
}

/* Slider */
.sponsor-slider {
    width: 100%;
}

.sponsor-slider img {
    margin: 0 auto;
    display: block;
}

/* Slider images — no repeat, no stretch */
.sponsor-slider .slick-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Remove gap between sponsor section and vouchers below */
.vouchers-section {
    margin-top: 2em !important;
    padding-top: 0 !important;
}

/* ====================================
   SPONSOR SLIDER — FIXED FRAME
   Desktop: 280px tall, max 380px wide
   Mobile:  200px tall, full width
   ==================================== */

/* Fixed frame container — desktop default */
.sponsor-img-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 280px;
    max-width: 380px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

/* Image inside frame — desktop */
.sponsor-img-frame img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .vouchers-section {
        margin-top: 44px !important;
        padding-top: 0 !important;
    }
    .gallery-wrapper {
        padding: 20px 0px 0px 0 !important;
    }
    .sp-row {
        margin-bottom: 0px !important;
    }

    /* Fixed frame container — mobile */
    .sponsor-img-frame {
        height: 200px;
        max-width: 100%;
    }

    /* Image inside frame — mobile */
    .sponsor-img-frame img {
        max-height: 200px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .vouchers-section {
        margin-top: 1.75em !important;
    }
}

/* ====================================
   SPONSOR THUMBNAIL SLIDER
   ==================================== */

/* Wrapper for the thumb slider */
[class^="thumb-slider-"] {
    margin-top: 10px;
}

/* Each thumbnail slide */
[class^="thumb-slider-"] .slick-slide {
    padding: 3px;
}

/* Thumbnail images — small and contained */
[class^="thumb-slider-"] .slick-slide img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Active/selected thumbnail */
[class^="thumb-slider-"] .slick-current img {
    opacity: 1;
    border: 2px solid #2ecc71;
    border-radius: 4px;
}