.emw-event-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.emw-event-header {
    margin-bottom: 30px;
    position: relative;
}

.emw-event-description {
    margin: 15px 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

.emw-event-location {
    margin: 15px 0;
    color: #2271b1;
    font-weight: 500;
}

.emw-event-dates {
    margin: 15px 0;
    color: #666;
    font-size: 0.9em;
}

.emw-event-social {
    margin-top: 20px;
}

.emw-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.emw-social-link {
    display: inline-block;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emw-social-link:hover {
    background: #e0e0e0;
    color: #2271b1;
}

.emw-social-link i {
    margin-right: 5px;
}

.emw-session-tabs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.emw-session-tab {
    padding: 8px 15px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emw-session-tab:hover {
    background: #e0e0e0;
}

.emw-session-tab[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.emw-session-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.emw-session {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.emw-session-header {
    margin-bottom: 20px;
}

.emw-session-date {
    color: #666;
    font-size: 0.9em;
}

.emw-session-venue {
    margin: 15px 0;
    color: #2271b1;
    font-weight: 500;
}

.emw-session-map {
    margin: 20px 0;
    border-radius: 4px;
    overflow: hidden;
}

.emw-tickets {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.emw-ticket {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

.emw-ticket:hover {
    transform: translateY(-2px);
}

.emw-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.emw-ticket-price {
    color: #2271b1;
    font-weight: bold;
    font-size: 1.2em;
}

.emw-ticket-body {
    flex: 1;
}

.emw-ticket-stock {
    color: #666;
    font-size: 0.9em;
}

.emw-ticket-description {
    margin-top: 10px;
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

.emw-ticket-footer {
    margin-top: 10px;
    text-align: right;
}

.emw-buy-button {
    display: inline-block;
    padding: 8px 15px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
}

.emw-buy-button:hover {
    background: #1a5186;
}

.emw-events-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.emw-event-item {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.emw-event-item-header {
    margin-bottom: 15px;
}

.emw-event-item-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.emw-event-item-location {
    color: #2271b1;
    margin-bottom: 15px;
    font-weight: 500;
}

.emw-event-item-footer {
    text-align: right;
    margin-top: 20px;
}

.emw-view-event {
    display: inline-block;
    padding: 8px 15px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.emw-view-event:hover {
    background: #1a5186;
}

.emw-sessions-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.emw-session-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.emw-session-card:hover {
    transform: translateY(-2px);
}

.emw-session-card-header {
    margin-bottom: 15px;
}

.emw-session-date {
    color: #666;
    font-size: 0.9em;
}

.emw-session-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.emw-session-location {
    color: #2271b1;
    margin-top: 15px;
    font-weight: 500;
}

.emw-session-tickets {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.emw-session-ticket {
    padding: 12px;
    background: #f8f8f8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

.emw-session-ticket:hover {
    transform: translateY(-2px);
}

.emw-calendar-container {
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.emw-map-container {
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .emw-session-tabs {
        flex-direction: column;
    }
    
    .emw-session-content {
        flex-direction: column;
    }
    
    .emw-session {
        min-width: 100%;
    }
    
    .emw-events-grid {
        grid-template-columns: 1fr;
    }
    
    .emw-sessions-grid {
        grid-template-columns: 1fr;
    }
    
    .emw-ticket {
        flex-direction: column;
    }
    
    .emw-ticket-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .emw-social-links {
        flex-direction: column;
    }
}

.emw-session-tabs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.emw-session-tab {
    padding: 8px 15px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emw-session-tab:hover {
    background: #e0e0e0;
}

.emw-session-tab[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.emw-session-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.emw-session {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.emw-session-header {
    margin-bottom: 20px;
}

.emw-session-date {
    color: #666;
    font-size: 0.9em;
}

.emw-tickets {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.emw-ticket {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emw-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.emw-ticket-price {
    color: #2271b1;
    font-weight: bold;
    font-size: 1.2em;
}

.emw-ticket-body {
    flex: 1;
}

.emw-ticket-stock {
    color: #666;
    font-size: 0.9em;
}

.emw-ticket-description {
    margin-top: 10px;
    color: #666;
    font-size: 0.9em;
}

.emw-ticket-footer {
    margin-top: 10px;
}

.emw-buy-button {
    display: inline-block;
    padding: 8px 15px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
}

.emw-buy-button:hover {
    background: #1a5186;
}

.emw-events-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.emw-event-item {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.emw-event-item-header {
    margin-bottom: 15px;
}

.emw-event-item-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.emw-event-item-location {
    color: #2271b1;
    margin-bottom: 15px;
}

.emw-event-item-footer {
    text-align: right;
}

.emw-view-event {
    display: inline-block;
    padding: 8px 15px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.emw-view-event:hover {
    background: #1a5186;
}

.emw-sessions-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.emw-session-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.emw-session-card:hover {
    transform: translateY(-2px);
}

.emw-session-card-header {
    margin-bottom: 15px;
}

.emw-session-date {
    color: #666;
    font-size: 0.9em;
}

.emw-session-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.emw-session-location {
    color: #2271b1;
    margin-top: 15px;
}

.emw-session-tickets {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.emw-session-ticket {
    padding: 12px;
    background: #f8f8f8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emw-calendar-container {
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .emw-session-tabs {
        flex-direction: column;
    }
    
    .emw-session-content {
        flex-direction: column;
    }
    
    .emw-session {
        min-width: 100%;
    }
    
    .emw-events-grid {
        grid-template-columns: 1fr;
    }
    
    .emw-sessions-grid {
        grid-template-columns: 1fr;
    }
}

/* Widget Styles */
.emw-widget-events {
    margin-top: 15px;
}

.emw-widget-event {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid #0073aa;
}

.emw-widget-event h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.emw-widget-event h4 a {
    color: #333;
    text-decoration: none;
}

.emw-widget-event h4 a:hover {
    color: #0073aa;
}

.emw-widget-description {
    margin: 8px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.emw-widget-location {
    margin: 8px 0;
    font-size: 12px;
    color: #0073aa;
}

.emw-widget-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 12px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    transition: background 0.3s ease;
}

.emw-widget-link:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}
