/* Hide time in list view */
td.fc-list-event-time {
    display: none;
}

/* Filter categories */
.category-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #f3f3f3;
    border: 2px solid var(--pill-color);
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.category-pill:hover {
    background-color: #e0e0e0;
}

.category-pill.inactive {
    background-color: #fff;
    border-color: #ccc;
    opacity: 0.6;
}

.category-pill .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Popup */
#event-popup {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    font-family: 'Arial', sans-serif;
    color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#event-popup .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #000;
    opacity: .5;
    border: none;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#event-popup .close-btn:hover {
    opacity: .75;
}

#event-popup h2 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

#event-popup p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

#event-popup p.description {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}
