 /* Finished event indicator */
.finished-event {
    position: relative;
    overflow: hidden;
}

.finished-event::after {
    content: "EVENT FINISHED";
    position: absolute;
    top: 15px;
    right: -35px;
    background: #d9534f;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.event-finished-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.finished-event:hover .event-finished-overlay {
    opacity: 1;
}