/**
 * Bouton "Exporter les résultats en CSV"
 * Fichier : themes/custom/genie_ecologique/css/csv-export.css
 *
 * Ajouter dans genie_ecologique.libraries.yml :
 *
 *   global-styling:
 *     css:
 *       theme:
 *         css/csv-export.css: {}
 *
 * (ou dans une librairie existante déjà chargée globalement)
 */

.view-export-csv {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  text-align: right;
  margin-right: 10px;
}

.btn-export-csv {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 1em;
  background-color: #5a8a2e;   /* vert identitaire du site */
  color: #fff !important;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-export-csv:hover,
.btn-export-csv:focus {
  background-color: #437020;
  color: #fff !important;
  text-decoration: none;
}

.btn-export-csv .icon-csv {
  font-size: 1.2em;
  line-height: 1;
}
