/**
 * WooEvents Elementor Widgets Styles
 * GPL-2.0-or-later
 */

/* Event Image Widget */
.wooevents-image-widget {
    display: inline-block;
    max-width: 100%;
}

.wooevents-image-widget img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Event Date Widgets */
.wooevents-start-date-widget,
.wooevents-end-date-widget {
    margin-bottom: 15px;
}

.wooevents-date-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #999;
}

.wooevents-date-label i {
    margin-right: 5px;
}

.wooevents-date-value {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.wooevents-date-value .all-day-label {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Event Address Widget */
.wooevents-address-widget {
    margin-bottom: 15px;
}

.wooevents-address-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #999;
}

.wooevents-address-label i {
    margin-right: 5px;
}

.wooevents-address-value {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.wooevents-map-link {
    display: inline-block;
    font-size: 13px;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wooevents-map-link:hover {
    color: #005177;
}

.wooevents-map-link i {
    margin-right: 3px;
}

/* Event Email Widget */
.wooevents-email-widget {
    margin-bottom: 15px;
}

.wooevents-email-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #999;
}

.wooevents-email-label i {
    margin-right: 5px;
}

.wooevents-email-value {
    font-size: 14px;
    color: #333;
}

.wooevents-email-value a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wooevents-email-value a:hover {
    color: #005177;
}

/* Event Website Widget */
.wooevents-website-widget {
    margin-bottom: 15px;
}

.wooevents-website-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #999;
}

.wooevents-website-label i {
    margin-right: 5px;
}

.wooevents-website-value a {
    font-size: 14px;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wooevents-website-value a:hover {
    color: #005177;
}

/* Event Status Widget */
.wooevents-status-widget {
    margin-bottom: 15px;
}

.wooevents-status-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #999;
}

.wooevents-status-content {
    font-size: 14px;
}

.wooevents-status-item {
    margin-bottom: 8px;
    color: #333;
}

.wooevents-status-item i {
    margin-right: 5px;
    color: #0073aa;
}

.wooevents-status-item strong {
    font-weight: 600;
}

/* Event Calendar Buttons Widget */
.wooevents-calendar-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.wooevents-calendar-buttons.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
}

.wooevents-calendar-buttons.vertical {
    flex-direction: column;
}

.wooevents-calendar-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.wooevents-calendar-button:hover {
    background-color: #005177;
    color: #ffffff;
}

/* Event Description Widget */
.wooevents-description-widget {
    margin-bottom: 20px;
}

.wooevents-description-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #999;
}

.wooevents-description-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.wooevents-description-content p {
    margin-bottom: 10px;
}

.wooevents-read-more {
    display: inline-block;
    font-size: 13px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.wooevents-read-more:hover {
    color: #005177;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wooevents-calendar-buttons.horizontal {
        flex-direction: column;
    }
    
    .wooevents-calendar-button {
        width: 100%;
    }
}

