/* Tour type filter styles */

.tour-type-chip {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1; /* ensure click events reach the chip */
}

.tour-type-chip.selected {
    background-color: rgba(255, 152, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.2);
}

/* Removed checkmark as requested */

.tour-type-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
