/* Single Event Page Styles */

.ecp-event-details-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ecp-event-notice {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

.ecp-event-notice.ecp-status-cancelled {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.ecp-event-notice.ecp-status-postponed {
    background: #fef5e7;
    color: #f39c12;
    border: 1px solid #fdebd0;
}

.ecp-event-notice.ecp-status-rescheduled {
    background: #e3f2fd;
    color: #2196f3;
    border: 1px solid #bbdefb;
}

.ecp-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.ecp-detail-item {
    display: flex;
    gap: 15px;
}

.ecp-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--ecp-primary-color, #e74c3c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ecp-detail-content h4 {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.ecp-detail-content p {
    margin: 5px 0;
    color: #333;
}

.ecp-detail-content strong {
    color: #222;
}

.ecp-price-free {
    display: inline-block;
    padding: 5px 15px;
    background: #2ecc71;
    color: white;
    border-radius: 4px;
    font-weight: 600;
}

.ecp-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--ecp-primary-color, #e74c3c);
}

.ecp-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ecp-btn-primary {
    background: var(--ecp-primary-color, #e74c3c);
    color: white;
}

.ecp-btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.3);
}

.ecp-btn-secondary {
    background: #ecf0f1;
    color: #34495e;
}

.ecp-btn-secondary:hover {
    background: #bdc3c7;
}

.ecp-event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .ecp-details-grid {
        grid-template-columns: 1fr;
    }
    
    .ecp-event-actions {
        flex-direction: column;
    }
    
    .ecp-btn {
        width: 100%;
        text-align: center;
    }
}

@media print {
    .ecp-event-actions {
        display: none;
    }
}

