.ec-event-calendar {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.ec-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.ec-tab-button {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.ec-tab-content {
    display: none;
}

.ec-tab-content.active {
    display: block;
}

.ec-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.ec-event-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ec-event-content {
    flex: 1;
}

.ec-event-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.3;
}

.ec-event-datetime {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 14px;
}

.ec-event-date,
.ec-event-time {
    display: inline-block;
}

.ec-event-time::before {
    content: "•";
    margin-right: 15px;
}

.ec-event-location {
    font-size: 16px;
    font-family: inherit;
    margin-top: 5px;
}

.ec-event-venue {
    font-weight: 600;
}

.ec-event-city::before {
    content: "•";
    margin: 0 8px;
}

.ec-event-actions {
    margin-left: 20px;
}

.ec-ticket-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ec-ticket-button:not(.ec-disabled):hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ec-ticket-button.ec-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.ec-no-events {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
    font-family: inherit;
}

@media (max-width: 768px) {
    .ec-event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .ec-event-actions {
        margin-left: 0;
        width: 100%;
    }
    
    .ec-ticket-button {
        width: 100%;
        text-align: center;
    }
    
    .ec-event-title {
        font-size: 20px;
    }
    
    .ec-event-datetime {
        flex-direction: column;
        gap: 5px;
    }
    
    .ec-event-time::before {
        display: none;
    }
}
