/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/magictools/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 6px 14px;
  width: 380px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  transition: all 0.2s ease; /* animation fluide */
}

.search-box:hover {
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.21);
  transform: translateY(-2px);
}

/* Icône loupe */
.search-icon {
  font-size: 16px;
  color: #999;
  margin-right: 8px;
}

/* Champ input */
.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
  flex: 1;
  color: #333;
}

/* Placeholder */
.search-box input::-moz-placeholder {
  color: #aaa;
}
.search-box input::placeholder {
  color: #aaa;
}

/* Croix clear */
.clear-icon {
  font-size: 14px;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.2s ease;
  background: none;
  border: none;
}

.clear-icon:hover {
  color: #555;
}

.highlight {
  background-color: #e5f5fb;
  font-weight: bold;
  color: black;
  border-bottom: 2px solid #009cd6;
}

#noResultsMessage {
  display: none;
  margin-top: 10px;
  font-style: italic;
  color: #999;
}

/* Barre de recherche moderne */
#accordion-search .search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  max-width: 720px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

#accordion-search .search-bar:focus-within {
  border-color: #7cc3e8;
  box-shadow: 0 0 0 4px rgba(124, 195, 232, 0.18);
}

#accordion-search .search-icon {
  width: 20px;
  height: 20px;
  color: #777;
  flex: 0 0 auto;
}

/* Masque la croix native des <input type="search"> (sinon double X) */
#accordion-search input[type=search] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 1.2;
  padding: 0.25rem 0.25rem;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

#accordion-search input[type=search]::-webkit-search-decoration,
#accordion-search input[type=search]::-webkit-search-cancel-button,
#accordion-search input[type=search]::-webkit-search-results-button,
#accordion-search input[type=search]::-webkit-search-results-decoration {
  display: none;
}

#accordion-search input[type=search]::-ms-clear,
#accordion-search input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

#accordion-search input[type=search]::-moz-placeholder {
  color: #999;
}

#accordion-search input[type=search]::placeholder {
  color: #999;
}

#accordion-search .clear-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #666;
}

#accordion-search .clear-btn:hover {
  background: #f3f3f3;
}

/* Résultats + quick terms */
mark.search-hit {
  padding: 0 0.15em;
  border-radius: 0.2em;
  background: #e5f5fb;
  border-bottom: 2px solid #00aae7;
}

#accordionResults .res-item {
  padding: 0.5rem 0;
  border-top: 1px solid #eee;
}

#accordionResults .res-title {
  font-weight: 600;
}

#accordionResults .res-snippet {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95em;
  color: #333;
}

#accordionResults .muted {
  color: #666;
  font-style: italic;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-terms {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-term {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.quick-term:hover {
  background: #e5f5fb;
  font-weight: 700;
  border-bottom: 2px solid #00aae7;
}

#submitBtn {
  height: 44px !important;
}

/* style pour element hub */
/* scope uniquement à la zone injectée */
#extracted-content-placeholder {
  --gap: 24px;
  --card-radius: 12px;
  --shadow: 0 6px 18px rgba(0,0,0,.06);
  --muted: #6b7280;
}

/* Grille 3 colonnes (1 mobile, 2 tablette, 3 desktop) */
#extracted-content-placeholder .row {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

@media (min-width: 640px) {
  #extracted-content-placeholder .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  #extracted-content-placeholder .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Card */
#extracted-content-placeholder .card-feed {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 0 24px rgba(169, 202, 216, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#extracted-content-placeholder .card-feed:hover {
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.2117647059);
  transform: translateY(-2px);
}

/* Image (déjà fixée par ton JS: background-image) */
#extracted-content-placeholder .card-feed__bgimg {
  display: block;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

/* Catégorie */
#extracted-content-placeholder .card-feed__categories {
  padding: 12px 20px 0;
  font-size: 12px;
  color: var(--muted);
}

#extracted-content-placeholder .card-feed__category {
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
}

/* Corps */
#extracted-content-placeholder .card-feed-body {
  padding: 8px 20px 18px;
}

#extracted-content-placeholder .card-feed__title {
  font-size: 20px;
  line-height: 1.3;
  margin: 6px 0 10px;
}

#extracted-content-placeholder .card-feed__title a {
  color: #111827;
  text-decoration: none;
}

#extracted-content-placeholder .card-feed__title a:hover {
  text-decoration: underline;
}

/* Date */
#extracted-content-placeholder .card-feed__date {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* Compteur résultats */
#extracted-content-placeholder .search-archive-results-count {
  display: block;
  margin-bottom: 12px;
  color: #111827;
}

/* ------------------- ELEMENT EXTRACTION ------------------- */
/* ------------------- TABLE ITU Event Registration --------- */
/* */
/* ----- Header style ----- */
table.ms-listviewtable tr.ms-viewheadertr th {
  background: #e5f5fb;
  border-bottom: 2px solid #00a0de;
  color: black;
  font-weight: 600;
  padding: 8px 10px;
  text-align: center;
}

/* ----- Table layout ----- */
table.ms-listviewtable {
  border-collapse: none;
  border-spacing: 0; /* enlève les espaces entre cellules */
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border: none;
}

/* Cellules normales */
table.ms-listviewtable td {
  padding: 8px 10px;
  border: none; /* pas de lignes internes */
  vertical-align: top;
  text-align: center;
}

/* Alternance de lignes */
table.ms-listviewtable tr:nth-child(even) td {
  background: #fafafa;
}

/* ----- Column width tweaks ----- */
table.ms-listviewtable td:nth-child(3),
table.ms-listviewtable th:nth-child(3) {
  min-width: 160px;
  white-space: nowrap;
}

/* ----- Highlight style ----- */
.highlight {
  background-color: #e5f5fb;
  font-weight: bold;
  color: #009cd6;
  text-decoration: underline;
}

/* ----- Responsive (mobile) ----- */
@media (max-width: 768px) {
  table.ms-listviewtable,
  table.ms-listviewtable thead,
  table.ms-listviewtable tbody,
  table.ms-listviewtable th,
  table.ms-listviewtable td,
  table.ms-listviewtable tr {
    display: block;
    width: 100%;
  }
  /* Masque l'en-tête */
  table.ms-listviewtable thead {
    display: none;
  }
  /* Chaque ligne devient une "carte" */
  table.ms-listviewtable tr {
    margin-bottom: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }
  table.ms-listviewtable td {
    text-align: left !important;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
  }
  table.ms-listviewtable td:last-child {
    border-bottom: none;
  }
  /* Labels automatiques */
  table.ms-listviewtable td:nth-child(1)::before {
    content: "Title URL: ";
    font-weight: bold;
    color: #333;
  }
  table.ms-listviewtable td:nth-child(2)::before {
    content: "URL: ";
    font-weight: bold;
    color: #333;
  }
  table.ms-listviewtable td:nth-child(3)::before {
    content: "Page: ";
    font-weight: bold;
    color: #333;
  }
  table.ms-listviewtable td:nth-child(4)::before {
    content: "Auto Translation: ";
    font-weight: bold;
    color: #333;
  }
  table.ms-listviewtable td:nth-child(5)::before {
    content: "Human Translation: ";
    font-weight: bold;
    color: #333;
  }
}

/*# sourceMappingURL=style-index.css.map*/