/*
Theme Name: ExcusasLite
Theme URI: https://conejo.top/
Author: ChatGPT
Description: Tema base limpio con menú centrado y pie de página.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: excusaslite
*/
body {
  margin: 0;
  font-family: sans-serif;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.main-nav {
  background-color: #333;
  padding: 12px 0;
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav-menu li {
  display: inline-block;
  margin: 0 15px;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.nav-menu a:hover {
  text-decoration: underline;
}

.main-footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.main-footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}
.main-footer a:hover {
  text-decoration: underline;
}

/* === Estilos del formulario de comentarios === */
.comment-form {
  margin-top: 40px;
}
.comment-form label {
  display: block;
  color: #ccc;
  margin-bottom: 5px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #666;
  padding: 10px;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 15px;
}
.comment-form textarea {
  min-height: 120px;
}
.comment-form input[type="submit"] {
  background: #444;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}
.comment-form input[type="submit"]:hover {
  background: #666;
}

/* === Corrección del estilo del comentario === */
.comment-form textarea {
  background: #222; /* fondo como el sitio */
  color: #000;       /* texto negro como pediste */
  border: 1px solid #666;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  min-height: 120px;
}

/* === Estilo unificado con fondo del sitio === */
body {
  background-color: #121212;
  color: #e0e0e0;
}
.comment-form textarea {
  background: #121212;
  color: #ffffff;
  border: 1px solid #444;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  min-height: 120px;
}

/* === Estilo claro === */
body {
  background-color: #ffffff;
  color: #000000;
}
.comment-form textarea {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ccc;
}
.comment-form input[type="submit"] {
  background: #000;
  color: #fff;
}
.comment-form input[type="submit"]:hover {
  background: #444;
}
