/* BCN Turisme Events Shortcodes Styles */

/* Event Registration Button */
.event-registration .registration-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #0073aa; /* Example primary color */
    border: 1px solid #0073aa;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.event-registration .registration-button:hover,
.event-registration .registration-button:focus {
    background-color: #005a87; /* Darker shade for hover/focus */
    border-color: #005a87;
    color: #ffffff;
    text-decoration: none;
}

/* Event Date and Time */
.event-date {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.event-date span {
    display: block; /* Each part (date, time) on a new line if needed or adjust as inline-block */
    margin-bottom: 5px;
}

.event-date strong {
    margin-right: 5px;
}

/* Event Location */
.event-location h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.event-location .event-address {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.event-location-map {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    border: 1px solid #ddd;
    margin-bottom: 20px;
} 