body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("logo.png") center center no-repeat;
  background-size: 650px;   /* plus grand */
  opacity: 0.12;            /* visible mais filigrane */
  pointer-events: none;
  z-index: -1;
}


/* =========================
   S.1 — Base globale
   ========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
}

/* =========================
   S.2 — Layout général
   ========================= */
#installer-platform {
  padding: 24px 16px;
}

/* =========================
   S.3 — Conteneur principal
   ========================= */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================
   S.4 — Onglets (Demandes / Mes travaux)
   ========================= */
.tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.tab {
  padding: 12px 0;
  font-weight: 600;
  color: #777777;
  position: relative;
  cursor: pointer;
}

.tab.active {
  color: #111111;
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #2F80ED;
  border-radius: 2px;
}

/* =========================
   S.5 — Liste des demandes
   ========================= */
#requestsList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================
   S.6 — Ligne de demande
   ========================= */
.request-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1.5px solid #2F80ED;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.request-row:hover {
  background: transparent;
}

/* =========================
   S.7 — Contenu de la ligne
   ========================= */
.request-title {
  font-weight: 600;
}

.request-city {
  font-weight: 600;
  color: #333333;
}

/* =========================
   S.8 — Actions / icônes
   ========================= */
.request-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.request-actions svg {
  cursor: pointer;
}

/* =========================
   S.9 — Bouton "Ajouter une demande"
   ========================= */
.add-request-btn {
  margin-top: 24px;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px dashed #2F80ED;
  background: #ffffff;
  color: #2F80ED;
  cursor: pointer;
}

.add-request-btn:hover {
  background: #f4f8ff;
}

body {
  background: #f6f7f9;
}

.request-row {
  background: #ffffff;
  border: 1.5px solid #2F80ED; /* bleu Wenergy conservé */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.request-row:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

#installer-platform {
  padding-top: 40px;
}

/* =========================
   FIX — Mentions légales fond gris
   ========================= */

footer,
.mentions-legales,
#mentions-legales,
#legal {
  background: transparent !important;
}

/* =========================
   S.11 — Bouton "Ajouter une demande"
   ========================= */
.top-actions{
  width:100%;
  max-width:1000px;
  margin: 16px auto 6px auto;
  display:flex;
  justify-content:flex-end;
  padding: 0 14px;
  box-sizing:border-box;
}

.btn-logout{
  background:#e74c3c;
  color:#ffffff;
  border:none;
  border-radius:10px;
  padding:10px 16px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  box-shadow: 0 4px 10px rgba(231,76,60,0.25);
}

.btn-logout:hover{
  background:#c0392b;
}
