/* FooEvents Elementor Integration - Dark Theme */
.fooevents-elementor-listing-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fooevents-elementor-listing-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
}

.fooevents-elementor-listing-wrapper .container {
    max-width: 1100px;
    margin: 0 auto;
}

.fooevents-elementor-listing-wrapper header {
    text-align: center;
    margin-bottom: 50px;
}

.fooevents-elementor-listing-wrapper h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.fooevents-elementor-listing-wrapper .subtitle {
    font-size: 1.1em;
    color: #b8bcc8;
}

.fooevents-elementor-listing-wrapper .events-list {
    background: transparent;
}

.fooevents-elementor-listing-wrapper .month-header {
    color: #b8bcc8;
    padding: 25px 0 15px 0;
    font-size: 1.1em;
    font-weight: 500;
    border-bottom: 1px solid #2d3344;
    margin-bottom: 0;
}

.fooevents-elementor-listing-wrapper .event-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 30px;
    padding: 30px 15px;
    border-bottom: 1px solid #2d3344;
    background: transparent;
    transition: background 0.2s ease;
    align-items: center;
}

.fooevents-elementor-listing-wrapper .event-item:hover {
    background: #20232f;
}

.fooevents-elementor-listing-wrapper .date-section {
    text-align: center;
}

.fooevents-elementor-listing-wrapper .date-month {
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #b8bcc8;
}

.fooevents-elementor-listing-wrapper .date-day {
    font-size: 3.5em;
    font-weight: 600;
    line-height: 1;
    color: #fbbf24;
}

.fooevents-elementor-listing-wrapper .event-details {
    flex: 1;
}

.fooevents-elementor-listing-wrapper .event-title {
    font-size: 1.15em;
    color: #fb923c;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.fooevents-elementor-listing-wrapper .event-title:hover {
    color: #fdba74;
    cursor: pointer;
}

.fooevents-elementor-listing-wrapper .event-location {
    color: #b8bcc8;
    font-size: 0.9em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.fooevents-elementor-listing-wrapper .event-time {
    color: #9ca3af;
    font-size: 0.88em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fooevents-elementor-listing-wrapper .event-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    min-width: 200px;
}

.fooevents-elementor-listing-wrapper .btn-reserve {
    background: #fb923c;
    color: #000000;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9em;
    white-space: nowrap;
    text-decoration: none;
}

.fooevents-elementor-listing-wrapper .btn-reserve:hover {
    background: #fdba74;
}

.fooevents-elementor-listing-wrapper .price-section {
    text-align: right;
}

.fooevents-elementor-listing-wrapper .price {
    font-size: 1.6em;
    font-weight: 600;
    color: #22c55e;
}

.fooevents-elementor-listing-wrapper .price.paid {
    color: #fb923c;
}

.fooevents-elementor-listing-wrapper .availability {
    font-size: 0.85em;
    color: #6b7280;
    margin-top: 4px;
}

.fooevents-elementor-listing-wrapper .events-period-header {
    font-size: 2.2em;
    font-weight: 600;
    color: #ffffff;
    padding: 40px 0 20px 0;
    margin-top: 30px;
    border-bottom: 2px solid #fb923c;
    text-align: center;
}

.fooevents-elementor-listing-wrapper .events-period-header:first-of-type {
    margin-top: 0;
}

@media (max-width: 900px) {
    .fooevents-elementor-listing-wrapper .event-item {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .fooevents-elementor-listing-wrapper .event-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid #2d3344;
    }

    .fooevents-elementor-listing-wrapper .date-day {
        font-size: 3em;
    }
}

@media (max-width: 600px) {
    .fooevents-elementor-listing-wrapper h1 {
        font-size: 2em;
    }

    .fooevents-elementor-listing-wrapper .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fooevents-elementor-listing-wrapper .date-section {
        margin: 0 auto;
        width: fit-content;
    }

    .fooevents-elementor-listing-wrapper .event-location {
        text-align: center;
    }

    .fooevents-elementor-listing-wrapper .event-time {
        justify-content: center;
    }

    .fooevents-elementor-listing-wrapper .event-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fooevents-elementor-listing-wrapper .price-section {
        text-align: center;
    }
}