
:root {
    --mlb-blue: #0d2c54;
    --mlb-red: #d50032;
    --mlb-light-blue: #132448;
    --mlb-gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Navbar */
.navbar-mlb {
    background: var(--mlb-blue) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-mlb .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    padding: 12px 20px;
    background: var(--mlb-red);
}

.navbar-logo {
    height: 35px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.navbar-mlb .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 15px 18px !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.navbar-mlb .nav-link:hover {
    background: var(--mlb-light-blue);
}

/* Hero Section - Compact */
.event-hero {
    position: relative;
    background: linear-gradient(135deg, var(--mlb-blue) 0%, var(--mlb-light-blue) 100%);
    color: white;
    padding: 80px 0 60px;
    overflow: hidden;
}

.event-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.event-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.event-hero-main {
    flex: 1;
}

.event-hero-logo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.event-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.event-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.event-breadcrumb a:hover {
    opacity: 0.7;
}

.event-breadcrumb span {
    margin: 0 10px;
    opacity: 0.5;
}

.event-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.event-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px 0 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.meta-item i {
    font-size: 1.2rem;
    color: var(--mlb-red);
}

.meta-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Main Container */
.event-container {
    max-width: 1400px;
    margin: -40px auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* White Card Container */
.content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Section */
.section {
    padding: 50px 60px;
    border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mlb-blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--mlb-blue);
    display: inline-block;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--mlb-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Description */
.description-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
}

.description-content h1,
.description-content h2,
.description-content h3 {
    color: var(--mlb-blue);
    margin-top: 25px;
    margin-bottom: 15px;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

/* Pricing Plans Cards - Subtle Design */
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.plan-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.plan-card-header {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 20px 18px;
    text-align: center;
    position: relative;
}

.plan-card.player .plan-card-header {
    background: #fafafa;
}

.plan-card.team .plan-card-header {
    background: #fafafa;
}

.plan-card.spectator .plan-card-header {
    background: #fafafa;
}

.plan-icon {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: #6c757d;
}

.plan-card.player .plan-icon {
    color: var(--mlb-blue);
    background: rgba(13, 44, 84, 0.05);
    border-color: rgba(13, 44, 84, 0.1);
}

.plan-card.team .plan-icon {
    color: var(--mlb-red);
    background: rgba(213, 0, 50, 0.05);
    border-color: rgba(213, 0, 50, 0.1);
}

.plan-card.spectator .plan-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.1);
}

.plan-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2c3e50;
    letter-spacing: 0;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: #7d8694;
    font-weight: 400;
}

.plan-body {
    padding: 20px 20px 25px;
}

.plan-price-section {
    text-align: center;
    padding: 0 0 18px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 18px;
}

.plan-main-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 6px;
}

.plan-main-price-label {
    font-size: 0.8rem;
    color: #7d8694;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.plan-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f8f8f8;
    color: #495057;
    font-size: 0.875rem;
}

.plan-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plan-detail-item i {
    color: #95a5a6;
    margin-top: 2px;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.plan-detail-label {
    font-weight: 500;
    color: #7d8694;
    margin-right: 6px;
    min-width: 160px;
    font-size: 0.85rem;
}

.plan-detail-value {
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
    font-size: 0.875rem;
}

.plan-detail-note {
    font-size: 0.75rem;
    color: #95a5a6;
    font-style: normal;
    margin-left: 5px;
    display: inline;
}

.plan-register-btn {
    width: 100%;
    padding: 12px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.plan-card.player .plan-register-btn {
    background: var(--mlb-blue);
    color: white;
}

.plan-card.player .plan-register-btn:hover {
    background: var(--mlb-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 44, 84, 0.25);
}

.plan-card.team .plan-register-btn {
    background: var(--mlb-red);
    color: white;
}

.plan-card.team .plan-register-btn:hover {
    background: #b30029;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 0, 50, 0.25);
}

.plan-card.spectator .plan-register-btn {
    background: #28a745;
    color: white;
}

.plan-card.spectator .plan-register-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}

.plan-register-btn i {
    font-size: 1rem;
}

/* Includes Section */
.plan-includes-section {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.plan-includes-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7d8694;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-includes-title i {
    font-size: 0.9rem;
    color: #95a5a6;
}

.plan-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-includes-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #495057;
    font-size: 0.875rem;
    line-height: 1.5;
}

.plan-includes-item:last-child {
    padding-bottom: 0;
}

.plan-includes-item i {
    color: #28a745;
    margin-top: 3px;
    font-size: 0.75rem;
    width: 16px;
    flex-shrink: 0;
}

.plan-card.player .plan-includes-item i {
    color: var(--mlb-blue);
}

.plan-card.team .plan-includes-item i {
    color: var(--mlb-red);
}

.plan-card.spectator .plan-includes-item i {
    color: #28a745;
}

.plan-includes-item-content {
    flex: 1;
}

.plan-includes-item-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.plan-includes-item-description {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Select Button for Pricing */
.pricing-select-btn {
    width: 100%;
    margin-top: 25px;
    padding: 14px 32px;
    background: var(--mlb-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.pricing-select-btn:hover {
    background: var(--mlb-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 0, 50, 0.3);
    color: white;
}

.pricing-select-btn i {
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--mlb-blue) 0%, var(--mlb-light-blue) 100%);
    color: white;
    text-align: center;
    padding: 50px 0;
    margin: 0;
    width: 100%;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--mlb-red);
    color: white;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #b30029;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 0, 50, 0.3);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--mlb-blue);
    padding: 14px 32px;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 14px 32px;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-outline:hover {
    background: white;
    color: var(--mlb-blue);
}

/* User Type Selection Modal */
/* Footer */
.footer-mlb {
    background: var(--mlb-blue);
    color: white;
    padding: 50px 0 20px;
    margin-top: 0px;
}

.footer-mlb .container {
    max-width: 1400px;
}

.footer-mlb h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mlb-gold);
}

.footer-mlb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-mlb a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) and (min-width: 577px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .info-item {
        padding: 12px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .event-meta {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .pricing-plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .plan-card-header {
        padding: 18px 18px 16px;
    }

    .plan-body {
        padding: 20px 18px 22px;
    }

    .plan-main-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .event-hero {
        padding: 60px 0 40px;
    }

    .event-hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .event-hero-logo {
        width: 150px;
        height: 150px;
        order: -1;
    }

    .event-title {
        font-size: 2rem;
    }

    .event-subtitle {
        font-size: 1rem;
    }

    .event-meta {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .event-container {
        margin-top: -30px;
        padding: 0 15px;
    }

    .section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pricing-plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .plan-card-header {
        padding: 14px 12px 12px;
    }

    .plan-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-bottom: 9px;
    }

    .plan-title {
        font-size: 0.95rem;
    }

    .plan-subtitle {
        font-size: 0.72rem;
    }

    .plan-main-price {
        font-size: 1.6rem;
    }

    .plan-main-price-label {
        font-size: 0.72rem;
    }

    .plan-body {
        padding: 16px 14px 20px;
    }

    .plan-price-section {
        padding: 0 0 14px 0;
        margin-bottom: 16px;
    }

    .plan-detail-item {
        font-size: 0.78rem;
        padding: 7px 0;
        gap: 7px;
    }

    .plan-detail-label {
        min-width: 90px;
        font-size: 0.72rem;
    }

    .plan-detail-value {
        font-size: 0.78rem;
    }

    .plan-detail-note {
        font-size: 0.68rem;
    }

    .plan-register-btn {
        padding: 9px 14px;
        font-size: 0.78rem;
        margin-top: 14px;
    }

    .plan-register-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .event-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .meta-item {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .meta-item i {
        font-size: 1rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .meta-value {
        font-size: 0.85rem;
    }

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-card-header {
        padding: 20px 18px 18px;
    }

    .plan-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .plan-title {
        font-size: 1.1rem;
    }

    .plan-subtitle {
        font-size: 0.85rem;
    }

    .plan-main-price {
        font-size: 2rem;
    }

    .plan-main-price-label {
        font-size: 0.85rem;
    }

    .plan-body {
        padding: 25px 20px 28px;
    }

    .plan-price-section {
        padding: 0 0 18px 0;
        margin-bottom: 20px;
    }

    .plan-detail-item {
        font-size: 0.9rem;
        padding: 10px 0;
        gap: 10px;
    }

    .plan-detail-label {
        min-width: 130px;
        font-size: 0.85rem;
    }

    .plan-detail-value {
        font-size: 0.9rem;
    }

    .plan-detail-note {
        font-size: 0.75rem;
    }

    .plan-register-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .plan-register-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) and (min-width: 481px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .event-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeIn 0.5s ease-out;
}

/* Location & Accommodation Cards */
.location-card, .hotel-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.location-card:hover, .hotel-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.location-icon, .hotel-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mlb-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    overflow: hidden; /* Ensure image fits */
}

.location-icon img, .hotel-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card .location-icon {
    width: 120px;
    height: 90px;
    border-radius: 14px;
}

.hotel-card.main .hotel-icon {
    width: 120px;
    height: 90px;
    border-radius: 14px;
}

.location-details, .hotel-details {
    flex: 1;
}

.location-type, .hotel-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-name, .hotel-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mlb-blue);
    margin-bottom: 5px;
    line-height: 1.3;
}

.location-address, .hotel-address {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 8px;
}

.hotel-location {
    font-size: 0.85rem;
    color: #6c757d;
}

.location-link {
    font-size: 0.85rem;
    color: var(--mlb-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.location-link:hover {
    text-decoration: underline;
}

.location-accommodation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .location-accommodation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.gallery-trigger {
    cursor: pointer;
}

.gallery-container {
    position: relative;
    cursor: pointer;
}

.gallery-container img {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-container:hover img {
    transform: scale(1.04);
    filter: brightness(0.92);
}

.gallery-hint {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    opacity: 0.9;
}

.location-action, .hotel-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hotel-card.main {
    border-left: 4px solid var(--mlb-blue);
}

@media (max-width: 768px) {
    .location-card, .hotel-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .location-action, .hotel-action {
        width: 100%;
        flex-direction: row;
    }

    .location-action .btn, .hotel-action .btn {
        flex: 1;
    }
}
