
.quick-filter-btn.active:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .quick-filters-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quick-filter-btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* === BOUTON CRÉER FILTRE RAPIDE === */
.create-tab-btn {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.create-tab-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.tab-delete-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0;
}

.filter-tab:hover .tab-delete-btn {
  opacity: 1;
}

.tab-delete-btn:hover {
  background: rgba(220, 38, 38, 1);
  transform: scale(1.1);
}

.tab-main {
  cursor: pointer;
  padding: 12px;
}

.tab-name {
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
}

.filter-tab.active .tab-name {
  color: white;
  font-weight: 600;
}
