/* === WooCommerce Easy Events Manager Front Styles === */
/* General Event Date Display */
span.event_datetime {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #1e3a8a;
    background-color: #e0f2fe;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1.5;
    direction: ltr;
    text-align: center;
}
/* Highlight expired events */
span.event_datetime[style*="red"] {
    color: #dc2626 !important;
    background-color: #fee2e2 !important;
}
/* Google Calendar Button */
.add_to_google_calandar {
    margin-top: 10px;
}
.add_to_google_calandar a {
    display: inline-flex;
    align-items: center;
    background-color: #0ea5e9;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.add_to_google_calandar a:hover {
    background-color: #0369a1;
}
.add_to_google_calandar img.google_calandar_img {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}
/* Custom Tickets Button */
a.addtocartbutton.button {
    margin-top: 16px;
    display: inline-block;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}
a.addtocartbutton.button:hover {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
}
/* Google Map Styling */
#map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
/* RTL Compatibility */
body.rtl .event_datetime {
    text-align: right;
}
body.rtl .add_to_google_calandar a {
    flex-direction: row-reverse;
}
body.rtl .add_to_google_calandar img.google_calandar_img {
    margin-left: 8px;
    margin-right: 0;
}
body.rtl a.addtocartbutton.button {
    text-align: right;
}
