@charset "UTF-8";
:root[data-glpi-theme=bull] {
  --glpi-mainmenu-bg: #002870;
  --tblr-primary-rgb: 255, 182, 0;
  --tblr-secondary: #607190;
  /*
  Ajout par Quentin Batiste :
  Nouvelle partie ici pour afficher correctement les formulaires sur la page d'acceuil
  */
  /* Colonne gauche : Catégories */
  /* Colonne droite : Formulaires */
  /* Barre de recherche */
  /* Grille des formulaires */
}
:root[data-glpi-theme=bull] .glpi-logo {
  background-size: cover;
}
:root[data-glpi-theme=bull] .page-anonymous > .py-4.mt-4 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
:root[data-glpi-theme=bull] div#plugin_formcreator_last_req_forms {
  display: none;
}
:root[data-glpi-theme=bull] div#plugin_formcreator_val_forms {
  display: none;
}
:root[data-glpi-theme=bull] #plugin_formcreator_wizard {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}
:root[data-glpi-theme=bull] #plugin_formcreator_wizard_categories {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
:root[data-glpi-theme=bull] #plugin_formcreator_wizard_categories .card-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}
:root[data-glpi-theme=bull] .slinky-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
:root[data-glpi-theme=bull] .slinky-menu li a {
  display: block;
  padding: 8px 12px;
  color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
:root[data-glpi-theme=bull] .slinky-menu li a:hover {
  background-color: #e2e6ea;
}
:root[data-glpi-theme=bull] #plugin_formcreator_wizard_right {
  flex: 3 1 700px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
:root[data-glpi-theme=bull] #plugin_formcreator_wizard_right h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
:root[data-glpi-theme=bull] #plugin_formcreator_searchBar {
  margin-bottom: 20px;
}
:root[data-glpi-theme=bull] #plugin_formcreator_search_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
:root[data-glpi-theme=bull] #plugin_formcreator_formlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
}
:root[data-glpi-theme=bull] .plugin_formcreator_formTile {
  display: flex;
  align-items: center;
  background-color: #eee;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
:root[data-glpi-theme=bull] .plugin_formcreator_formTile:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
:root[data-glpi-theme=bull] .plugin_formcreator_formTile i {
  font-size: 24px;
  margin-right: 10px;
  color: #666;
}
:root[data-glpi-theme=bull] .plugin_formcreator_formTile_title {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}