/* Takoda Events List Styles - v2.0 with Multi-Date Support */

.takoda-events-list {
    max-width: 1200px;
    margin: 0 auto;
}

.takoda-event-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

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

.takoda-event-item.event-full {
    background: #f9f9f9;
    opacity: 0.8;
}

.event-content {
    flex: 1;
}

.event-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.event-datetime,
.event-location,
.event-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #555;
}

.event-icon {
    font-size: 18px;
}

.event-date {
    font-weight: 600;
    color: #2c3e50;
}

.event-time {
    color: #666;
    margin-left: 10px;
}

.event-note {
    margin-top: 10px;
    padding: 10px 15px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    font-size: 14px;
    color: #856404;
}

.event-note em {
    font-style: normal;
}

.event-description {
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
}

.event-actions {
    flex-shrink: 0;
}

.event-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.event-signup-btn {
    background: #3498db;
    color: #ffffff;
}

.event-signup-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.event-full-btn {
    background: #95a5a6;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.6;
}

.event-no-form {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

.capacity-text {
    font-weight: 500;
}

.event-full .capacity-text {
    color: #e74c3c;
    font-weight: 600;
}

.no-events {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .takoda-event-item {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    
    .event-title {
        font-size: 20px;
    }
    
    .event-actions {
        width: 100%;
    }
    
    .event-button {
        width: 100%;
        text-align: center;
    }
}

/* Elementor Compatibility */
.elementor-widget-container .takoda-events-list {
    width: 100%;
}
