
h2 {
    color: brown;
}
h3 {
    color: orange;
}
body {
    background-color: rgba(40, 40, 40, 0.9);
    color: black;
    margin-left: 200px;
    margin-right: 200px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify;
    text-justify: inter-word;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-family: Roboto,tahoma,verdana,arial,sans-serif;
    padding: 10px;
}

a {
    color: #333333;
}

a:visited {
    color: darkgray;
}
a:hover, a:active {
    color: lightgray;
}

em {
    color: #ffae00 !important;
}
table, tr, th, td, caption {
    border: 1px solid black;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    border-collapse: collapse;
    padding: 0.25rem;
    margin: auto;     /* Center the table */
    font-size: 16px;  /* Reduce the font size for table text */
    color: black;
    background-color: #f5f5f5;
    
}
.table-container {
    display: flex;
    flex-wrap: wrap; /* Allows tables to wrap onto a new line if needed */
    gap: 20px;
  }
p span {
    font-weight: bold;
    color: red;
}
b, strong {
    color: red;
}

.indent {
    padding-left: 20px;
}

td.zero_width {
    width: 1%;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .modal-content {
    background-color: whitesmoke;
    padding: 20px;
    border: 1px solid black;
    border-radius: 5px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  .modal-close {
    float: right;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
  }

  .content-body-wrapper {
    /* --- MODIFICATION FOR FIXED WIDTH --- */
    width: 90%; /* Example fixed width. Adjust this to your desired content width. */
                   /* This was previously width: 100%; */
   margin: 0 auto;

    /* Optional: if you want it to not shrink below this, but still be able to be wider
       if content pushes it (though with a fixed width this is less common)
    min-width: 1200px;
    width: auto; /* or a percentage if you want it to try and fill up to a max-width */

    background-color: #f0f0f0;
    padding: 15px;
    box-sizing: border-box;

    /* If the content-body-wrapper itself should get scrollbars when the viewport
       (within the body's margins) is narrower than 1200px: */
    overflow-x: auto; /* This will make this specific div scrollable if its content overflows */
                      /* Or, if you want the browser's main scrollbar (for the body/html)
                         to handle it, you might not need this here, depending on parent overflow settings. */
}