/* Globally justify all text */
body {
  text-align: justify;
  background-color: black;
  color: white; /* Ensures text remains visible */
}

h1, h2, h3, h4, h5, h6 {
  color: white;
}

a {
  color: lightblue;
}

.quarto-title-banner {
  background-color: #222; /* Darker background for title banner */
}

/* Change figure caption text color to white */
figcaption {
  color: white;
}

/* Hide the figure label */
.figure-label {
  display: none;
}

/* Make the textarea full width */
textarea {
  width: 100%;
  box-sizing: border-box; /* Ensure padding and border are included in the width */
}


