/* overview page styles */
.ov-container {
    display: flex;
    width: 100%;
    font-family: "Open Sans", sans-serif !important;
    font-size: 13px !important;
  }
  
  .ov-column-1 {
    flex-shrink: 0; /* shrinks to 0 to apply 70% width*/
    flex-basis: 70%; /* sets initial width to 70%*/
  }
  
  .ov-column-2 {
    margin: 1rem;
  }
  
  .ov-box {
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 1rem;
  }
  
  .ov-main {
    padding: 25px;
  }
  
  .ov-img {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  
  .ov-links {
    margin-top: 24px;
  }
  
  .ov-headertitle {
    height: 30px;
    width: 100%;
    color: #555555;
    font-family: "Open Sans", sans-serif !important;
    font-size: 18px !important;
    line-height: 30px;
    padding-left: 15px;
  }
  
  .ov-containericon {
    float: left;
    height: 20px;
    width: 20px;
    font-size: 13px !important;
  }
  
  .ov-containertext {
    margin-left: 30px;
  }
  
  .ov-containertext a {
    color: #86bc25;
    text-decoration: underline;
  }
  
  .ov-containertext a:hover {
    color: #86bc25;
    text-decoration: underline;
  }
  
  .ov-containertext a.visited {
    color: #86bc25 !important;
  }
  
  .ov-containerlinks {
    width: 100%;
    height: auto;
    padding-top: 10px;
  }
  
  /* .ov-sidenav1 {
    margin-top: -150px;
    margin-left: 150px; 
    margin-top: -4px;
  } */
  
  .ov-sidenav2 {
    margin-top: 12px;
  }
  
  .button-ov-container {
    max-width: 417px;
  }
  
  .button-ov-draft {
    background-color: #26890D; /* green (draft stage) */
    color: white; /* Text color */
    font-size: 20px;
    font-family: "Open Sans", sans-serif !important;
    cursor: pointer;
    border: none; /* Remove border */
    display: flex; /* Use flexbox to arrange image and text horizontally */
    align-items: center; /* Vertically center items */    
    padding: 12px; /* Add padding for spacing */
  }
  
  .button-ov-interim-final {
    background-color: #007CB0; /* blue (interim stage)  */
    color: white; /* Text color */
    font-size: 20px;
    font-family: "Open Sans", sans-serif !important;
    cursor: pointer;
    border: none; /* Remove border */
    display: flex; /* Use flexbox to arrange image and text horizontally */
    align-items: center; /* Vertically center items */    
    padding: 12px; /* Add padding for spacing */
  }
  
  .button-ov-image {
      flex: 0;
      margin-left: 10px; /* Add spacing between image and text */
      order: 2;
  }
  
  .button-ov-image img {
      max-height: 60px; /* Ensure the image doesnt exceed button height */
      width: auto;
  }
  
  .button-ov-text {
      text-align: left; /* Left-align the text */
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      order: 1;
  }
  
  .line2-ov-container {
    margin-top: 10px;
    display: flex; /* Use flexbox to arrange image and text horizontally */
    align-items: center; /* Vertically center items */    
  }
  
  .line2-ov-image {
      flex: 0;
      order: 2;
  }  
  
  .line2-ov-image img {
    max-height: 16px; /* Ensure the image doesnt exceed button height */
  }  
  
  .line2-ov-text {
      font-size: 16px; /* Font size for the second line */  
      font-weight: 500;
      text-align: left; /* Left-align the text */
      letter-spacing: 2px;
      flex: 1;
      display: flex;
      flex-direction: column;
      order: 1;
      max-width: 120px;
  }  
  
  .line1-ov {
      font-size: 18px; /* Font size for the first line */
      text-align: left;
  }
  
  .button-sidenav-container {
    max-width: 310px;
  }
  
  .button-sidenav-container a:link { text-decoration: none; }
  
  .button-sidenav {
    background-color: #fff;
    color: #000; /* Text color */
    font-size: 20px;
    font-family: "Open Sans", sans-serif !important;	
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    display: flex; /* Use flexbox to arrange image and text horizontally */
    align-items: center; /* Vertically center items */    
    padding: 12px; /* Add padding for spacing */
    min-height: 105px;
  }
  
  .button-sidenav-image {
    flex: 0;
    margin-left: 10px; /* Add spacing between image and text */
    order: 2;
  }
  
  .button-sidenav-image img {
    max-height: 60px; /* Ensure the image doesnt exceed button height */
    width: auto;
  }
  
  .button-sidenav-text {
    text-align: left; /* Left-align the text */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
  }
  
  .line1-sidenav {
    font-size: 16px; /* Font size for the first line */
    text-align: left;
  }
  
  .line2-sidenav {
    font-size: 14px; /* Font size for the second line */
    text-align: left;  
    margin-top: 10px;
  }
    