/* Estilo Minimalista Web 90s */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Courier New', Courier, monospace, monospace;
  font-size: 15px;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 850px;
  margin: 0 auto;
}

header {
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

p {
  margin-bottom: 10px;
}

hr {
  border: none;
  border-top: 1px solid #000000;
  margin: 15px 0;
}

/* Buscador en vivo */
.search-bar {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-bar input {
  font-family: inherit;
  font-size: 14px;
  padding: 4px 8px;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  width: 280px;
  max-width: 100%;
}

.filter-indicator {
  font-weight: bold;
  color: #000000;
}

.btn-reset {
  font-family: inherit;
  font-size: 13px;
  background: none;
  border: none;
  color: #0000ee;
  text-decoration: underline;
  cursor: pointer;
}

.btn-reset:hover {
  color: #ff0000;
}

/* Listado numerado simple: 1. Fecha - Titulo de nota - Resumen (tag,tag,tag). */
.notes-list {
  padding-left: 30px;
}

.notes-list li {
  margin-bottom: 12px;
}

/* El link solo en el título */
a.note-link {
  color: #0000ee;
  text-decoration: underline;
  font-weight: bold;
}

a.note-link:visited {
  color: #551a8b;
}

a.note-link:hover {
  color: #ff0000;
}

/* Etiquetas solo para filtro */
.tag-btn {
  color: #0000ee;
  text-decoration: underline;
  cursor: pointer;
}

.tag-btn:hover {
  color: #ff0000;
}

.hidden {
  display: none !important;
}

.no-results {
  font-style: italic;
  margin-top: 15px;
}

footer {
  margin-top: 30px;
}
