/* Prosomo tools — shared dark listing template.
   Kept identical in the signature-generator and infolettre repos (copy on change).
   Tune the whole look from the :root variables below. */
:root{
  --bg:#0a0a0a; --fg:#ffffff; --muted:#8a8a8a; --line:#333333;
  --hover:#4da3ff; --field:#1c1c1c; --row:#191919;
  --pad-y:56px; --pad-x:72px;
}
*{box-sizing:border-box}
body{
  margin:0; padding:var(--pad-y) var(--pad-x) 96px;
  background:var(--bg); color:var(--fg);
  font-family:'Helvetica Neue',Helvetica,Arial,sans-serif; font-size:16px; line-height:1.5;
}
a{color:var(--fg); text-decoration:none}
a:hover{color:var(--hover)}

/* Splash (no ?prosomo): centered logo only */
body.splash{display:flex; align-items:center; justify-content:center; min-height:100vh; padding:24px}
body.splash .logo img{width:280px}

.logo img{width:200px; height:auto; display:block; margin:0 0 6px}
.subtitle{margin:0 0 4px; color:var(--muted); font-size:13px; letter-spacing:.14em; text-transform:uppercase}

.section{margin-top:32px}
.section > h2{font-size:20px; font-weight:700; margin:0 0 10px; padding-bottom:8px; border-bottom:1px solid var(--line)}

.items{list-style:none; margin:0; padding:0}
.items > li{padding:10px 0; border-bottom:1px solid var(--row)}
.items > li:last-child{border-bottom:0}
.items a.title{font-size:17px}
.empty{color:var(--muted); font-style:italic; font-size:14px; padding:10px 0}

/* Action row (infolettre: view / code / send-test) */
.actions{display:flex; flex-wrap:wrap; gap:8px 16px; align-items:center; margin-top:6px; font-size:13px}
.actions a{color:var(--muted)}
.actions a:hover{color:var(--hover)}
.actions form{display:flex; gap:6px; margin:0}
.actions input[type=email]{background:var(--field); border:1px solid var(--line); color:var(--fg);
  padding:5px 9px; border-radius:5px; font-size:13px; min-width:180px}
.actions button{background:var(--field); border:1px solid var(--line); color:var(--fg);
  padding:5px 12px; border-radius:5px; font-size:13px; cursor:pointer}
.actions button:hover{border-color:var(--hover); color:var(--hover)}

.notice{margin:18px 0 0; padding:10px 14px; background:#141414; border:1px solid var(--line);
  border-radius:6px; color:var(--hover); font-size:14px}

@media (max-width:640px){ :root{--pad-x:20px; --pad-y:32px} }
