/* Clean Event Card - Web Version - No background, no hover effects */
.clean-event-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: none;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.clean-event-card:hover {
    /* No hover effects - completely clean */
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
}

.event-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #3b82f6;
}

.event-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.event-time {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.25;
    margin: 0;
}
