﻿.map {
    border: 1px solid #999;
    margin: 0 0 20px 0;
    border-radius: 10px;
    height: 300px;
}

.event-card {
    width: 320px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin: auto;
}

.event-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.event-price {
    color: #c30000;
    font-weight: bold;
    margin-bottom: 8px;
}

.event-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.event-description {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}


/* Ensure carousel indicators and nav buttons are visible in modal */
.modal .carousel-indicators [data-bs-target] {
    background-color: #fff;
    border: 2px solid var(--accent-color);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.modal .carousel-indicators .active {
    background-color: var(--accent-color);
}

.modal .carousel-control-prev-icon,
.modal .carousel-control-next-icon {
    filter: invert(1) drop-shadow(0 0 2px #000);
}

.modal .carousel-control-prev,
.modal .carousel-control-next {
    width: 7%;
}
/* Fixed height for event cards in carousel */
.modal .event-card {
    height: 420px;
    max-height: 420px;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .modal .event-card img.event-image {
        max-height: 140px;
        width: auto;
        margin-bottom: 1rem;
        border-radius: 8px;
        object-fit: cover;
    }

    .modal .event-card .event-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .modal .event-card .event-date {
        font-size: 1rem;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .modal .event-card .event-description {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        flex: 1 1 auto;
    }

    .modal .event-card .event-button {
        margin-top: auto;
        background: var(--accent-color);
        color: var(--accent-color);
        border: none;
        border-radius: 6px;
        padding: 0.5rem 1.2rem;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s;
    }

