body { font-family: system-ui, Arial; max-width: 1200px; margin: 24px auto; padding: 0 16px;}
a { text-decoration:none; color:#0b57d0; }
.top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.top input[type="text"] {
  width: 100%;
}

.search-actions {
  display: flex;
  gap: 10px;
  justify-content: center; /* ou flex-start si tu préfères à gauche */
  flex-wrap: wrap;
}

.grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap:12px; margin-top:16px; }
.card { border:1px solid #ddd; border-radius:10px; padding:10px; display:flex; gap:10px; color: inherit; }
.img80 { width:80px; height:80px; border-radius:10px; object-fit:cover; border:1px solid #eee; }
.muted { color:#666; font-size: 13px; }
.cats { margin-top:28px; display:grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap:16px; }
.cat { border:1px solid #eee; border-radius:10px; padding:12px; }
.box { border:1px solid #ddd; border-radius:12px; padding:14px; margin-top:16px; }
.danger { background:#b00020; color:white; border:none; border-radius:10px; padding:10px 14px; }
.btn { border:1px solid #ddd; border-radius:10px; padding:10px 14px; background:white; cursor:pointer; }
.btn:hover { background:#f6f6f6; }
.row { display:flex; gap:18px; align-items:flex-start; flex-wrap: wrap; }
.img200 { width:200px; height:200px; border-radius:16px; object-fit:cover; border:1px solid #eee; }
label { display:block; font-size: 13px; color:#444; margin-bottom: 6px; }
input[type=number], input[type=text], textarea, select { padding:10px; border-radius:10px; border:1px solid #ddd; width: 100%; box-sizing: border-box; }
textarea { min-height: 90px; }
.form { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:12px; }
hr { border:none; border-top:1px solid #eee; margin: 18px 0; }
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.action-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action-row form {
  margin: 0; /* évite le décalage vertical */
}

.logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.subcat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-line { 
  margin: 2px 0; 
}

.info-sep { 
  height: 10px; 
}