/* Event Detail View Styles */

/* WooCommerce default price styling */
.price {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    margin-top: 0px!important;
    margin-bottom: 10px!important;
    font-size: 16px!important;
    line-height: 1.5;
    display: block;
    font-weight: bold;
    color: #000!important;
    /* width: 100%; */
}

/* Base Event Detail Styles */
.event-details-location,
.event-details-price,
.event-details-time,
.event-details-rsvp {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;  
    color: #000000;
    font-weight: 500;  
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Flex layout for sections that use text wrappers (not price) */
.event-details-location .location-text,
.event-details-time .time-text,
.event-details-rsvp .rsvp-text {
    display: flex;
    align-items: flex-start;
}

/* Icon spacing for flex sections */
.event-details-location i,
.event-details-time i,
.event-details-rsvp i {
    margin-right: 5px;
    flex-shrink: 0;
}

/* Price section uses different layout - no flex wrapper */
.event-details-price i {
    margin-right: 5px;
}

/* RSVP specific styles */
.rsvp-countdown {
    color: #0066cc;
    font-weight: bold;
    margin-left: 5px;
}

.rsvp-closed {
    color: #cc0000;
    font-weight: bold;
    margin-left: 5px;
}

.rsvp-message {
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
}

.rsvp-closed-message {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Event time specific styles */
.event-details-page .event-time {
    display: block;
    font-weight: 500;
    color: #333;    
}

/* For recurring events */
.event-details-page .event-time:contains("Next Event:") {
    color: #0066cc;
}

/* Mobile styles */
@media (max-width: 768px) {
    .event-details-location,
    .event-details-price,
    .event-details-time,
    .event-details-rsvp {
        padding: 8px;
        font-size: 14px;
    }
    
    .event-details-location i,
    .event-details-time i,
    .event-details-price i,
    .event-details-rsvp i {
        font-size: 14px;
    }
}