body {
	font-family: sans-serif ;
	background: #110000 ;
	color: #ccc ;
}

main {
	max-width: 800px ;
	margin: auto ;
}

img {
	max-width: 100% ;
}

header h1 {
	text-align: center ;
}

h2 {
	text-align: center ;
}

footer {
	text-align: center ;
	clear: both ;
}

/* For TAGLIST.HTML */
.taglist {
	text-align: center ;
	clear: both ;
}

.audio-player {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  max-width: 48%;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  max-width: 48%;
  text-align: center; /* Fallback for older browsers or theme conflicts */
}
#search-input {
  padding: 0.75rem;
  width: 100%;
  max-width: 400px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease-in-out;
}
#search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.highlight {
  background-color: #dbeafe;
  color: #1e40af;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 500;
}

/* For NEXTPREV.HTML */
#nextprev {
	/* The container for both the previous and next articles. */
}
#prevart {
	float: left ;
	text-align: left ;
}
#nextart {
	float: right ;
	text-align: right ;
}
#nextart,#prevart {
	max-width: 33% ;
}

