#app-content h1 {
    color: #004071;
}
#app-content h2 {
    color: #A0863F;
}
#app-content h3 {
    font-size: 1.3em;
    color: #00133F;
}
#app-content h4 {
    font-size: 1.2em;
    color: #5E4F23;
}
#app-content h5 {
    font-size: 1.1em;
    color: #6E6E6E;
}
#app-content blockquote {
    color: #A7253F;
}
#app-content dt {
    color: #004071;
}
#app-content dd {

}

#app-content blockquote {
  display: flex;         /* Enables flexbox layout */
  align-items: flex-start; /* Aligns icon to the top of the text */
  gap: 1.5rem;           /* Creates space between icon and text */
  margin: 2rem 0;
  padding: 1rem;
  background-color: #f9f9f9;
  border-left: 5px solid #00133F;
  margin: 0;             /* Remove default p margins to keep alignment crisp */
}

#app-content blockquote {
  display: flex;         /* Enables flexbox layout */
  align-items: flex-start; /* Aligns icon to the top of the text */
  gap: 1.5rem;           /* Creates space between icon and text */
  margin: 2rem 0;
  padding: 1rem;
  background-color: #f9f9f9;
  border-left: 5px solid #00133F;
  margin: 0;             /* Remove default p margins to keep alignment crisp */
}

/* Container styling */
details {
  margin: 1rem 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: sans-serif;
}

/* Subtle shadow on hover */
details:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* The clickable header */
summary {
  padding: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  background-color: #ffffff;
  list-style: none; /* Removes default arrow in most browsers */
}

/* Removes default arrow in Safari */
summary::-webkit-details-marker {
  display: none;
}

/* Custom Arrow Icon */
summary::before {
  content: '▶';
  display: inline-block;
  margin-right: 12px;
  font-size: 0.8rem;
  color: #64748b;
  transition: transform 0.2s ease;
}

/* Rotate arrow when open */
details[open] summary::before {
  transform: rotate(90deg);
}

/* Content styling (The Paragraph) */
details p {
  padding: 0 1rem 1rem 2.5rem;
  margin: 0;
  line-height: 1.6;
  color: #475569;
  background-color: #ffffff;
}

/* Optional: Active state background */
details[open] summary {
  background-color: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}

#app-content img {
  /* This floats the image to the right (use 'left' for the opposite) */
  float: right;

  /* Spacing between the figure and the surrounding text */
  margin:5px;

  /* Optional: Aesthetics */
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}
