/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Comic Sans MS", "Comic Sans", Times, serif;
  background-color: #f5f1ea;
  color: #2e2e2e;
  line-height: 1.6;
}

header, footer {
  background-color: #c9bce2;
  color: #2e2e2e;
  text-align: center;
  padding: 1rem;
  border-bottom: 3px double #7e6c9d;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

nav ul {
  list-style: none;
  padding-left: 0;
}

nav ul li::before {
  content: '★ '; /* Or ✿ ✧ ❀ ➤ etc */
  color: #5c3d8d;
  margin-right: 0.25rem;
}

.content {
  width: 60%;
  padding: 1rem;
}

.sideboxes {
  width: 20%;
  padding: 1rem;
  background-color: #f0ebfa;
}

.textbox {
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  padding: 0.75rem;
}

#recentupdates ul {
  list-style: none;
  padding-left: 0;
}

#recentupdates ul li::before {
  content: '➤ '; /* Or ✦ ✧ ⮞ etc. */
  color: #5c3d8d;
  margin-right: 0.25rem;
}

footer {
  border-top: 3px double #7e6c9d;
  margin-top: 1rem;
}

a {
  color: #5c3d8d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Times New Roman", serif;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help; /* optional, makes it look more interactive */
}

.tooltiptext {
  visibility: hidden;
  width: 140px; /* adjust as needed */
  background-color: #c9bce2; /* lavender bg */
  color: #000;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  font-size: 0.9rem;

  position: absolute;
  z-index: 1;
  bottom: 125%; /* show above the text */
  left: 50%;
  transform: translateX(-50%);

  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
