/* Common CSS used across multiple pages - START */

/* Grid Layout */
.ticketwp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.cityguides-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

@media (max-width: 1200px) {
    .cityguides-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .cityguides-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cityguides-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cityguides-list {
        grid-template-columns: 1fr;
    }
}

/* List Layout */
.ticketwp-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Common Venue/Performer Card Styles */
.ticketwp-venue,
.ticketwp-performer {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.ticketwp-venue:hover,
.ticketwp-performer:hover {
    transform: translateY(-5px);
}

/* Image Styles */
.venue-image,
.performer-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.venue-image img,
.performer-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content Styles */
.venue-details,
.performer-details {
    padding: 1.5rem;
}

.venue-title,
.performer-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

.venue-title a,
.performer-title a {
    color: #333;
    text-decoration: none;
}

.venue-title a:hover,
.performer-title a:hover {
    color: #0073aa;
}

.venue-noimages .venue-title,
.performer-noimages .performer-title,
.event-noimages .event-title,
.venue-hero-content .venue-title,
.performer-hero-content .performer-title,
.event-hero-content .event-title {
    color: #FFF;
    font-size: 2.25rem;
}

.venue-hero,
.performer-hero,
.event-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.venue-hero::before,
.performer-hero::before,
.event-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}

.venue-location,
.performer-genre,
.performer-location {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0.5rem 0;
}

.venue-events,
.performer-events {
    color: #0073aa;
    font-size: 0.9rem;
}

/* List View Specific Styles */
.ticketwp-list .ticketwp-venue,
.ticketwp-list .ticketwp-performer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.ticketwp-list .venue-image,
.ticketwp-list .performer-image {
    flex: 0 0 200px;
    padding-top: 0;
    height: auto;
}

.ticketwp-list .venue-details,
.ticketwp-list .performer-details {
    flex: 1;
}

/* Pagination */
.ticketwp-pagination {
    margin: 2rem 0;
    text-align: center;
}

.ticketwp-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.ticketwp-pagination .page-numbers:hover:not(.current) {
    background: #0073aa;
    color: #fff;
}

.ticketwp-pagination .page-numbers.current,
.ticketwp-pagination .current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
}

.ticketwp-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticketwp-pagination li {
    display: inline-block;
}

/* Single Venue/Performer Hero */
.venue-hero,
.performer-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: 2rem;
}

.venue-hero::before,
.performer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.venue-hero-content,
.performer-hero-content,
.event-hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-hero h1,
.performer-hero h1,
.event-hero h1,
h1.venue-title,
h1.performer-title,
h1.event-title {
    font-size: 3rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

/* Content Layout */
.venue-content-wrap,
.performer-content-wrap,
.event-content-wrap,
.city-content-wrap {
    min-height: 50vh;
}

.ticketwp-single-venue,
.ticketwp-single-performer,
.ticketwp-single-event {
    background-color: #f5f5f5;
}

.venue-content .venue-events,
.performer-content .performer-events,
.event-content .event-events,
.city-content {
    color: #333;
}

.venue-content h2,
.performer-content h2,
.event-content h2,
.city-content h2 {
    color: #333;
}

.venue-content,
.performer-content,
.event-content {
    max-width: 1200px;
    min-height: 40vh;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.city-content {
    max-width: 1200px;
    min-height: 40vh;
    margin: 0 auto;
    padding: 2rem 0;
}

.event-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.event-content a {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.venue-details-wrap,
.performer-details-wrap,
.event-details-wrap {
    border-top: 1px solid #ddd;
    background-color: #FFF;
}

.venue-about,
.performer-about,
.event-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.venue-details-wrapper,
.performer-details-wrapper,
.event-details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Venue/Performer Details */
.venue-details,
.performer-details {
    padding: 2rem;
    border-radius: 8px;
}

.venue-details h3,
.performer-details h3 {
    margin: 0 0 1rem 0;
    color: #333;
}

.venue-address,
.venue-capacity,
.venue-description,
.performer-description {
    margin-bottom: 2rem;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: opacity 0.3s ease;
}

.events-list.loading {
    opacity: 0.6;
    position: relative;
}

.event-item {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 2rem !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: transform 0.2s ease-in-out !important;
}

.event-item:hover {
    transform: translateY(-2px);
}

.event-date {
    text-align: center;
    min-width: 100px;
}

.event-meta .event-venue,
.event-meta .event-date {
    font-size: 1.25rem;
    color: #FFF;
    text-align: left;
}

.event-time {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.event-details {
    flex: 1;
}

.event-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.event-performers,
.event-venue,
.event-date {
    color: #666;
    font-size: 0.9rem;
}

.event-performers,
.event-content .price-range,
.event-content .event-venue-details {
    margin-bottom: 100px;
}

.event-details .event-performers {
    margin-bottom: initial !important;
}

.event-hero-content .event-venue a {
    color: #FFF;
    text-decoration: none;
}

.event-venue a:hover {
    text-decoration: underline;
}

.event-action .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background:































;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease-in-out;
}

.event-action .button:hover {
    background: #0152FF;
}

.event-category,
.event-hero-content .event-category {
    color: inherit;
    font-size: 1.25rem;
}

.event-hero-content .event-category {
    color: #FFF;
}

/* Loading Overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-overlay span {
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: bold;
}

/* Desktop Events */
.desktop-events .event-row-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.desktop-events .event-item {
    padding: 0;
}

.desktop-events .event-date {
    padding: 15px 15px 0;
    text-align: left;
}

.desktop-events .date-month {
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.desktop-events .date-day {
    color: #666;
    font-size: 14px;
    margin-top: 3px;
}

.desktop-events .event-details {
    padding: 8px 15px;
}

.desktop-events .event-title {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.3;
    color: #333;
    text-align: left
}

.desktop-events .event-venue {
    margin-bottom: 8px;
    text-align: left
}
.desktop-events.event-performer .event-venue a,
.desktop-events .event-performer.event-venue a,
.event-performer .event-venue a,
.desktop-events .event-venue a {
    color: #e4356f !important;
    background: none !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.desktop-events.event-performer .event-venue a:hover,
.desktop-events .event-performer.event-venue a:hover,
.event-performer .event-venue a:hover,
.desktop-events .event-venue a:hover {
    color: #333366 !important;
    text-decoration: underline !important;
}

.desktop-events .venue-name {
    color: #e4356f;
    display: block;
    font-weight: 500;
    margin-bottom: 3px;
}

.desktop-events .venue-location {
    color: #666;
    font-size: 14px;
}

.desktop-events .event-action {
    padding: 8px 15px 15px;
    text-align: right;
}

.desktop-events .button {
    display: inline-block;
    padding: 8px 16px;
    background-coF6403;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Events */
.mobile-events {
    display: none;
}

.mobile-events .event-item {
    display: table;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
    margin-bottom: 10px;
}

.mobile-events .event-date {
    display: table-cell;
    width: 110px;
    font-weight: normal;
    vertical-align: middle;
    padding-right: 10px;
    text-align: left;
}

.mobile-events .event-date span:first-child {
    font-weight: bold;
}

.mobile-events .event-details {
    display: table-cell;
    vertical-align: middle;
    width: auto;
}

.mobile-events .event-title {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.mobile-events .event-venue {
    color: #c36;
    font-size: 14px;
    margin-top: 3px;
}

.mobile-events .venue-location {
    color: #666;
    font-size: 14px;
}

.mobile-events .event-venue a {
    color: #0275d8;
    text-decoration: none;
}

.mobile-events .event-action {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .venue-content,
    .performer-content {
        grid-template-columns: 1fr;
    }

    .venue-hero h1,
    .performer-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ticketwp-list .ticketwp-venue,
    .ticketwp-list .ticketwp-performer {
        flex-direction: column;
    }

    .ticketwp-list .venue-image,
    .ticketwp-list .performer-image {
        padding-top: 56.25%;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .event-date {
        min-width: auto;
    }

    .venue-hero,
    .performer-hero {
        height: 300px;
    }

    .venue-hero h1,
    .performer-hero h1 {
        font-size: 2rem;
    }

    .desktop-events {
        display: none;
    }

    .mobile-events {
        display: block;
    }

    .city-content {
        padding: 0 15px;
    }
}

/* Venue Additional Info Sections */
.venue-box-office,
.venue-parking,
.venue-accessibility,
.venue-social {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.venue-box-office h3,
.venue-parking h3,
.venue-accessibility h3,
.venue-social h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2rem;
}

.venue-box-office p,
.venue-parking p,
.venue-accessibility p {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.6;
}

.venue-box-office strong {
    color: #333;
}

/* Venue Map */
.venue-map {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.venue-map iframe {
    display: block;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ddd;
}

.social-links a:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* No Images Wrap */
.venue-noimages-wrap,
.performer-noimages-wrap,
.event-noimages-wrap {
    background-color: #333;
    color: #fff;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.venue-noimages,
.performer-noimages,
.event-noimages {
    width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.venue-noimages a,
.performer-noimages a,
.event-noimages a {
    color: #FFF;
}

.venue-noimages a:hover,
.performer-noimages a:hover,
.event-noimages a:hover {
    text-decoration: underline;
    color: #FFF;
}

/* Links and Tabs */
.venue-links-wrap,
.performer-links-wrap,
.city-links-wrap,
.event-links-wrap,
.links-wrap {
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(18,18,18,0.18);
}

.venue-links,
.performer-links,
.event-links,
.city-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    font-weight: 600;
}

.venue-links a,
.performer-links a,
.event-links a,
.city-links a {
    color: #333;
    padding: 0 20px 15px 20px;
}

.venue-links a.active,
.performer-links a.active,
.event-links a.active,
.city-links a.active,
.event-links a:hover,
.venue-links a:hover,
.performer-links a:hover,
.city-links a:hover {
    border-bottom: 4px solid #0073aa;
}

.venue-tab-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* GEOIP CSS */
.twp-location-wrapper {
    font-family: 'Arial', sans-serif !important;
    margin: 20px 0 !important;
}

.twp-location-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.twp-location-icon svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.twp-location-text {
    font-weight: bold;
}

.twp-change-location {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin-left: 10px;
}

.twp-change-location:hover {
    text-decoration: underline;
}

.twp-location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.twp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.twp-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.twp-modal-content h2 {
    margin: 0 0 20px;
    font-size: 24px;
    color: #333;
}

.twp-autocomplete-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

.twp-location-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.twp-autocomplete-wrapper .pac-container {
    z-index: 1050;
}

.twp-autocomplete-wrapper .pac-item {
    padding: 8px;
    font-size: 14px;
}

.twp-modal-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.twp-modal-button:hover {
    background: #0056b3;
}

.twp-reset-form {
    margin-top: 10px;
}

.twp-reset-button {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.twp-reset-button:hover {
    background: #5a6268;
}

.twp-modal-open .twp-modal-overlay {
    opacity: 1;
}

.twp-modal-open .twp-modal-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Event List */
.event-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
    padding-right: 10px;
}

.event-list .event-item {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    min-height: 24px;
}

.event-list .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 8px solid #cccccc;
    border-bottom: 6px solid transparent;
    margin-right: 8px;
    flex-shrink: 0;
}

.event-list .event-name {
    color: #333;
    flex-grow: 1;
    white-space: normal;
    overflow: visible;
    text-overflow: ellipsis;
    text-align: left !important;
    padding-right: 10px;
    font-weight: bold;
}

.event-list .event-date {
    color: #666;
    text-align: right;
    margin-left: auto;
    width: 65px;
    flex-shrink: 0;
    font-weight: normal;
    position: absolute;
    right: 10px;
}

.event-list a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 65px;
}

.event-list a:hover .event-name {
    text-decoration: underline;
}

.event-list .mobile-overlay {
    display: none;
}

@media (max-width: 768px) {
    .event-list {
        margin-top: 10px;
    }

    .event-list .event-item {
        margin-bottom: 12px;
        position: relative;
    }

    .event-list .event-name {
        text-align: left !important;
        padding-right: 10px;
    }

    .event-list .mobile-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
    }
}

/* Buttons */
.cart-btn {
    background: #2c5282;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-btn:hover {
    background: #2a4365;
}

.cart-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.btn-checkout,
.btn-each {
    background-color: #0073aa !important;
    border: 1px solid #005177 !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-checkout:hover {
    background: #0073aa;
    border: 1px solid #005177 !important;
}

/* Additional Fixes */
.desktop-events .event-row-link:last-child {
    margin-bottom: 20px;
}

@media (min-width: 769px) {
    .desktop-events .event-row-link:hover {
        background-color: #f9f9f9;
    }
}

/* Common CSS used across multiple pages - END */

/* Performer page CSS - START */
.performer-tab {
    display: none;
}

.performer-tab.active {
    display: block;
}

.performer-links a,
.venue-links a {
    padding: 10px 15px !important;
    display: inline-block !important;
    text-decoration: none !important;
    color: #000 !important;
    background: #eee !important;
    border-radius: 5px !important;
    margin-right: 5px !important;
}


.performer-links a.active {
    background: #000;
    color: #fff;
}

#geoip-heading,
.geoip-events {
    display: none;
}

#geoip-heading.visible,
.geoip-events.visible {
    display: block;
}

/* GeoIP Desktop Events */
.geoip-desktop-events .event-row-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 8px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.geoip-desktop-events .event-item {
    padding: 0;
    margin-bottom: 8px !important;
    background: white !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
}

.geoip-desktop-events .event-date {
    padding: 15px 15px 0;
    text-align: left;
}

.geoip-desktop-events .date-month {
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.geoip-desktop-events .date-day {
    color: #666;
    font-size: 14px;
    margin-top: 3px;
}

.geoip-desktop-events .event-details {
    padding: 8px 15px;
}

.geoip-desktop-events .event-title {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.3;
    color: #333;
}

.geoip-desktop-events .event-venue {
    margin-bottom: 8px;
}

.geoip-desktop-events .venue-name {
    color: #e4356f;
    display: block;
    font-weight: 500;
    margin-bottom: 3px;
}

.geoip-desktop-events .venue-location {
    color: #666;
    font-size: 14px;
}

.geoip-desktop-events .event-action {
    padding: 8px 15px 15px;
    text-align: right;
}

.geoip-desktop-events .button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #D53455;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
/* Alternating row colors for Desktop Events */
.geoip-desktop-events .event-item:nth-child(odd),
.desktop-events .event-item:nth-child(odd) {
    background: #ffffff !important; /* Light gray for odd rows */
}

.geoip-desktop-events .event-item:nth-child(even),
.desktop-events .event-item:nth-child(even) {
    background: #ffffff !important; /* White for even rows */
}

/* Alternating row colors for Mobile Events */
@media (max-width: 768px) {
    .geoip-mobile-events .event-row-link,
    .mobile-events .event-row-link {
        background: #ffffff; /* Default to white */
        display: block; /* Ensure full width for background color */
        width: 100%; /* Full width */
        border-bottom: 1px solid #e5e5e5; /* Keep border */
        margin-bottom: 10px; /* Keep margin */
        padding: 10px 0; /* Keep padding */
        box-sizing: border-box; /* Ensure padding doesn't affect width */
        text-decoration: none;
    }

    .geoip-mobile-events .event-row-link:nth-child(odd),
    .mobile-events .event-row-link:nth-child(odd) {
        background: #ffffff !important; /* Light gray for odd rows */
    }

    .geoip-mobile-events .event-row-link:nth-child(even),
    .mobile-events .event-row-link:nth-child(even) {
        background: #ffffff !important; /* White for even rows */
    }

    .geoip-mobile-events .event-item,
    .mobile-events .event-item {
        background: transparent !important; /* Prevent event-item from overriding */
        border-bottom: none; /* Already moved to event-row-link */
        margin-bottom: 0; /* Already moved to event-row-link */
        padding: 0; /* Already moved to event-row-link */
        display: flex; /* Use flexbox for layout */
        align-items: center; /* Vertically center content */
        width: 100%; /* Full width */
    }

    .geoip-mobile-events .event-date,
    .mobile-events .event-date {
        width: 110px; /* Match original table-cell width */
        padding-right: 10px; /* Match original spacing */
        text-align: left;
        flex-shrink: 0; /* Prevent shrinking */
    }

    .geoip-mobile-events .event-details,
    .mobile-events .event-details {
        flex: 1; /* Take remaining space */
        text-align: left;
    }
}
/* GeoIP Mobile Events */
.geoip-mobile-events {
    display: none;
}

.geoip-mobile-events .event-item {
    display: table;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
    margin-bottom: 10px;
}

.geoip-mobile-events .event-date {
    display: table-cell;
    width: 110px;
    font-weight: normal;
    vertical-align: middle;
    padding-right: 10px;
    text-align: left;
}

.geoip-mobile-events .event-details {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    text-align: left;
}

.geoip-mobile-events .event-title {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.geoip-mobile-events .event-venue {
    color: #c36;
    font-size: 14px;
    margin-top: 3px;
}

.geoip-mobile-events .venue-location {
    color: #666;
    font-size: 14px;
}

.geoip-mobile-events .event-venue a {
    color: #0275d8;
    text-decoration: none;
}

.geoip-mobile-events .event-action {
    display: none;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
    .geoip-desktop-events {
        display: none;
    }

    .geoip-mobile-events {
        display: block;
    }

    .performer-noimages-wrap {
        display: none;
    }

    .events-container {
        margin-top: 10px;
    }

    .events-container h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .events-container h3 {
        font-size: 18px;
        margin: 16px 0 12px;
    }

    .showing-from {
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) {
    .geoip-desktop-events .event-row-link:hover {
        background-color: #f9f9f9;
    }
}

.geoip-desktop-events .event-row-link:last-child {
    margin-bottom: 20px;
}
.ticketwp-blocked-message { background: #ffe6e6; border: 1px solid #d00; padding: 20px; margin: 20px 0; border-radius: 5px; text-align: center; }
.ticketwp-blocked-message h2 { color: #d00; margin: 0 0 10px; }
.ticketwp-blocked-message p { margin: 0; color: #333; }
.loading-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; }
.events-list.loading { position: relative; min-height: 100px; }

/* Performer page CSS - END */

/* Venue page CSS - START */
#venue-events-container.loading {
    opacity: 0.6;
    position: relative;
    min-height: 100px;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
    .venue-hero {
        display: none !important;
    }

    .venue-noimages-wrap {
        display: none !important;
    }
}

/* Venue page CSS - END */

/* City page CSS - START */
.city-tab {
    display: none;
}

.city-tab.active {
    display: block;
}

.hidden {
    display: none !important;
}

#city-events-container.loading {
    opacity: 0.6;
    position: relative;
    min-height: 100px;
}

/* Mobile Events */
.mobile-events .event-performer {
    color: #000000;
    font-size: 14px;
    margin-top: 3px;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
    .mobile-events .event-details {
        text-align: left;
    }
}

/* City page CSS - END */

/* Category page CSS - START */
.main-categories-wrap {
    text-align: center;
    padding: 20px;
    margin: 0 auto;
    background-color: #F5F5F5;
}

.category-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

.subcategories-wrap {
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
}

.subcategory-select {
    padding: 12px 16px;
    margin: 10px 0;
    border: 2px solid #007bff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    max-width: 300px;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subcategory-select:focus {
    border-color: #0056b3;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.subcategory-select.active.filter-active {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    margin: auto;
    max-width: 1200px;
}

.performer-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.performer-item a {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
}

.performer-item a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.pagination {
    margin-top: 30px;
    text-align: center;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    margin: 0 3px;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.pagination a {
    background-color: #f0f0f0;
    color: #007bff;
}

.pagination a:hover {
    background-color: #007bff;
    color: white;
}

.pagination .current {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.pagination .disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

.pagination .dots {
    background: none;
    padding: 0 5px;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
    padding: 8px 15px;
}

.location-header {
    text-align: left;
}

#all-events.loading {
    opacity: 0.6;
    position: relative;
    min-height: 100px;
}

@media (max-width: 576px) {
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        margin: 0 2px;
        font-size: 13px;
    }

    .pagination .dots {
        display: none;
    }

    .subcategory-select {
        width: 100%;
        font-size: 16px;
    }
}

/* Category page CSS - END */

/* Ticket page CSS - START */
.ticketwp-cart-page .container,
.ticketwp-single-ticket .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.ticketwp-single-ticket .ticket-header {
    background-color: #333;
    color: #FFF;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-header .ticket-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.ticketwp-single-ticket .body-wrap {
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

#my-map {
    height: 100%;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .venue-box-office,
    .venue-parking,
    .venue-accessibility,
    .venue-social {
        padding: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}
.ticlite-details-wrap {
    display: none; /* Hide by default */
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ticlite-details-active {
    display: block; /* Show when About tab is active */
}

/* Ticket page CSS - END */