
/* Events Calendar Pro Styles */
.events-calendar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.events-calendar-navigation a {
    color: #007cba;
    text-decoration: none;
    font-weight: bold;
}

.events-calendar-navigation h2 {
    margin: 0;
    color: #333;
}

.events-calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.events-calendar-table th,
.events-calendar-table td {
    border: 1px solid #ddd;
    padding: 10px;
    vertical-align: top;
}

.events-calendar-table th {
    background: #007cba;
    color: white;
    font-weight: bold;
    text-align: center;
}

.calendar-day {
    min-height: 100px;
    position: relative;
}

.day-number {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.event-preview {
    margin-top: 5px;
    padding: 2px 5px;
    background: #007cba;
    color: white;
    border-radius: 3px;
    font-size: 12px;
}

.event-preview a {
    color: white;
    text-decoration: none;
}

.events-list {
    margin-top: 30px;
}

.event-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-item h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.event-date {
    color: #666;
    font-weight: bold;
    margin: 5px 0;
}

.event-location {
    color: #888;
    margin: 5px 0;
}

.single-event-container {
    max-width: 800px;
    margin: 0 auto;
}

.event-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.event-meta-item {
    margin-bottom: 15px;
}

.event-meta-label {
    font-weight: bold;
    color: #333;
}

.event-map {
    margin-top: 20px;
}

#event-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

.upcoming-events-widget {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.upcoming-events-widget h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.widget-event-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.widget-event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.widget-event-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.widget-event-date {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .events-calendar-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .events-calendar-table th,
    .events-calendar-table td {
        padding: 5px;
        font-size: 14px;
    }
    
    .calendar-day {
        min-height: 80px;
    }
}
        