/**
 * Styles for the Plesr Calendar Events
 */

/* Link container styles */
.plesr-event-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.plesr-event-link:hover {
    text-decoration: none;
}

/* Ensure the link doesn't affect the display styling */
.plesr-event-item {
    transition: box-shadow 0.3s ease;
}

.plesr-event-link:hover .plesr-event-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}