
/* ======== GAB PARTY – CUSTOM CSS (ESTILO 4CHAN CLÁSSICO) ======== */

/* Fundo e estrutura base */
body {
  background-color: #ffffee;
  color: #800000;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
}

/* Cabeçalho e títulos */
h1, h2, h3 {
  color: #002244;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
}

/* Postagem */
.post {
  background-color: #f0e0d6;
  border: 1px solid #d9bfb7;
  padding: 8px;
  margin: 5px;
  border-radius: 4px;
}

.post.reply {
  background-color: #f0e0d6;
  border-left: 2px solid #d9bfb7;
  margin-left: 30px;
}

/* Nome e ID */
.name {
  color: #117743;
  font-weight: bold;
}

.posteruid {
  color: #228854;
}

/* Links */
a {
  color: #0000ee;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Quote */
.quote {
  color: #789922;
}

/* Spoiler */
.spoiler {
  background-color: #000;
  color: #000;
}

.spoiler:hover {
  color: #fff;
}

/* Barra superior */
.navbar, .boardlist {
  background-color: #f0e0d6;
  color: #800000;
  padding: 5px;
  border-bottom: 1px solid #d9bfb7;
  text-align: center;
}

/* Rodapé */
.footer {
  text-align: center;
  color: #555;
  margin: 15px 0;
  font-size: 12px;
}

/* Imagens */
img {
  border: none;
  max-width: 100%;
  height: auto;
}

/* Caixa de reply */
textarea, input[type="text"], input[type="password"], input[type="email"] {
  background-color: #fff;
  border: 1px solid #d9bfb7;
  color: #000;
  padding: 4px;
  font-family: "Arial", sans-serif;
  font-size: 13px;
}

/* Botões */
input[type="submit"], button {
  background-color: #f0e0d6;
  border: 1px solid #d9bfb7;
  color: #800000;
  cursor: pointer;
  padding: 5px 10px;
}

input[type="submit"]:hover, button:hover {
  background-color: #e6d3c4;
}
