body {
  font-family: 'Courier New', monospace;
  background-color: #0f001a;
  color: #fceaff;
  padding: 1rem;
  max-width: 600px;
  margin: auto;
}

h1 {
  color: #ff69b4;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.date {
  text-align: center;
  color: #69fff7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

section {
  background-color: #1a0033;
  border: 2px solid #69fff7;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
}

h2 {
  color: #69fff7;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


h3 {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0.2rem 0;
}

p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0.2rem 0;
}

sub {
  font-size: 1.2rem;
  /*line-height: 1.4;*/
  margin: 0.4rem 0;
}

button {
  font-size: 0.75rem;
  margin-top: 0.4rem;
  margin-right: 0.3rem;
  background: #ff69b4;
  border: none;
  border-radius: 4px;
  color: #000;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  font-family: 'Courier New', monospace;
}

button.back-button {
  font-size: 0.85rem;
  color: #000;
  background-color: #69fff7;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

button.back-button:hover {
  background-color: #a4ffff;
}
	

button:hover {
  background: #ffc0eb;
}

input {
  background-color: #1a0033;
  border: 4px solid #69fff7;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  font-family:'Courier New', monospace;
  width: 40%;
}

input[type=text] {
  color: white
}

.placeholder {
	font-family:'Courier New', monospace;
	color: white
}

.refresh-btn {
  display: inline-block;
  font-size: 0.85rem;
  color: #000;
  background-color: #69fff7;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.refresh-btn:hover {
  background-color: #a4ffff;
}

.bobby-thought {
  color: #ffa07a;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.top-buttons {
  text-align: center;
  margin-bottom: 1.5rem;
}
.dots span {
  display: inline-block;
  animation: bounce 1.2s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
}

li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #69fff7;
  color: #fceaff;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

li:last-child {
  border-bottom: none;
}

li button {
  background-color: #ff69b4;
  color: #000;
  border: none;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  transition: background-color 0.3s ease;
}

li button:hover {
  background-color: #ffc0eb;
}
li:hover {
  background-color: #25004a;
  transition: background-color 0.2s ease-in-out;
}
ul#upcomingList {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

ul#upcomingList li {
  background-color: #2e0939;
  color: #ff75c3;
  border: 2px solid #75ffee;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul#upcomingList li span {
  flex-grow: 1;
  outline: none;
  cursor: text;
}

ul#upcomingList button {
  background: #ff75c3;
  color: #1e001f;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  margin-left: 10px;
}
#chatBox {
  white-space: pre-wrap;
  word-wrap: break-word;
}
select#personality {
  background-color: #1a0033;
  color: #ff75c3;
  border: 2px solid #69fff7;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  appearance: none;
  cursor: pointer;
}

select#personality:hover {
  background-color: #2e0939;
  border-color: #a4ffff;
}

select#personality:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff69b4;
}
