/* ==========================================================================
   Anonymous for the Voiceless — Listmonk Public Pages Override
   Color palette: #000000, #ffffff, #BB0000
   Font: Source Sans 3
   No rounded corners.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&display=swap');

/* ---------- Base ---------- */
body {
  background: #000000;
  font-family: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #e0e0e0;
}

a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #BB0000;
  text-underline-offset: 3px;
}
a:hover {
  color: #BB0000;
}

label {
  color: #cccccc;
}

h1, h2, h3, h4 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Forms ---------- */
input[type="text"],
input[type="email"],
input[type="password"],
select {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
  font-family: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
  border-color: #BB0000;
  outline: none;
}

input:focus::placeholder {
  color: transparent;
}

input[disabled] {
  opacity: 0.4;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ---------- Error ---------- */
.error {
  color: #BB0000;
}

/* ---------- Buttons ---------- */
.button {
  background: #BB0000;
  border: 2px solid #BB0000;
  border-radius: 0;
  color: #ffffff;
  font-family: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9em;
}
.button:hover {
  background: #900000;
  border-color: #900000;
  color: #ffffff;
}

.button.button-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.button.button-outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

/* ---------- Layout ---------- */
.wrap {
  background: #000000;
  border: 1px solid #222222;
  box-shadow: none;
  border-radius: 0;
}

/* ---------- Header ---------- */
.header {
  border-bottom: 3px solid #BB0000;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

/* ---------- Lists / subscription management ---------- */
.lists .description {
  color: #888888;
}

/* Checkbox styling */
input[type="checkbox"] {
  accent-color: #BB0000;
}

/* ---------- Unsubscribe section ---------- */
.unsub-all {
  border-top: 1px solid #222222;
}

/* ---------- Archive ---------- */
.archive .date {
  color: #888888;
}

/* ---------- Pagination ---------- */
.pg-page {
  color: #888888;
}
.pg-page:hover {
  color: #ffffff;
}
.pg-page.pg-selected {
  color: #ffffff;
}

/* ---------- Login ---------- */
.login input[name=totp_code] {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 0;
  color: #ffffff;
}

/* ---------- Footer ---------- */
footer.container {
  color: #555555;
}
footer a {
  color: #555555;
}
footer a:hover {
  color: #ffffff;
}