
    body, html
    {
      margin: 0;
      padding: 0;
    }
    .search-iframe  /* obsolete */
    {
      width: 100%;
      height: 150px; /* Set the height of the iframe to 150px (will need to shrink to match production today) */
      border: none;
    }
    .wells-iframe   /* obsolete */
    {
      width: 100%;
      height: 400px; /* Set the height of the iframe to 400px (will need to shrink to match production today) */
      border: none;
    }
    .sides-container
    {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      margin-top: 20px; /* Adjust as needed */
    }
    .left_iframe
    {
      flex: 1; /* Allow side iframes to take equal space */
      width: 50%; /* Adjust the width of each side iframe */
      height: 400px; /* Set the height of the side iframes */
      margin: 5px;
      border: 3px solid blue; /* Add a 5px solid blue border */
      box-sizing: border-box; /* Include border in width calculation */
    }
    .right_iframe
    {
      flex: 1; /* Allow side iframes to take equal space */
      width: 50%; /* Adjust the width of each side iframe */
      height: 400px; /* Set the height of the side iframes */
      margin: 5px;
      border: 3px solid blue; /* Add a 5px solid blue border */
      box-sizing: border-box; /* Include border in width calculation */
    }
    .left_iframe + .right_iframe
    {
      margin-left: -6px; /* Compensate for the border width */
    }
