.SolutionBox {
    width: 100%;                     /* Make the div occupy the full available width */
    border: 1px solid gray;          /* Gray border with a width of 1px */
    border-radius: 5px;              /* Slightly rounded corners (5px radius) */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Small shadow: horizontal offset, vertical offset, blur radius, and color */
    padding: 10px;                   /* Padding inside the box, adjust as needed */
    margin: 0;                       /* Reset margin to avoid any unwanted spacing */
    box-sizing: border-box;          /* Include padding and border in the element's total width and height */
    color: darkgreen;
  }

  .SolutionBox figcaption {
    color: darkgreen !important;
  }