
/* Filtres */
#filter-form .form-control,
#filter-form .form-select {
  border-radius: 0.5rem;
}

/* Toggle vue */
#toggle-cards.active,
#toggle-list.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

/* Offres */
.offre-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.offre-card:hover {
  background: #f9f9f9;
}
.offre-title {
  font-size: 1.2rem;
  font-weight: 600;
}
.offre-meta {
  font-size: 0.9rem;
  color: #555;
}

/* Chargement */
.spinner {
  width: 3rem;
  height: 3rem;
  border: 5px solid #ccc;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
