a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

.page_fullouter {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2em;
    width: 100%;

    background-image: url("../img/owsoverhead.jpeg") ;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;

    place-content: center;
    font-family: 'Sora', sans-serif;
    
   
}

.page_outer {

    width: 50vmax;
    min-width: 1000px;
    text-align: left;
    place-content: left;
    border: 1px silver solid;
    background-color: white;
    padding-left: 1em;
    padding-right: 1em;
    min-height: 68vh;

}

/* Apply the 'Sora' font to the entire page */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sora', sans-serif;  /* Set the default font for the page */
  line-height: 1.6;                /* Improve line spacing for readability */
  background-color: #f8f8f8;       /* Light background for the page */
  color: #333;                     /* Dark text for good contrast */
  font-size: 16px;                  /* Base font size */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;                /* Ensure full-page height */
}

/* Styling for headers */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: bold;
  color: #222;  /* Slightly darker color for headers */
}

h1 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

/* Paragraph styling */
p {
  margin-bottom: 1.5rem;  /* Spacing between paragraphs */
}

/* Links */
a {
  color: #007bff;          /* Link color */
  text-decoration: none;   /* Remove underline */
  transition: color 0.3s ease;  /* Smooth color transition */
}

a:hover,
a:focus {
  color: #0056b3;  /* Darker blue on hover/focus */
  text-decoration: underline;  /* Underline on hover/focus */
}

/* Lists */
ul, ol {
  margin-left: 2rem;         /* Indentation for lists */
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;     /* Space between list items */
}

/* Blockquotes */
blockquote {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #f0f0f0; /* Light grey background */
  border-left: 4px solid #007bff;  /* Blue border on the left */
  font-style: italic;        /* Italic text */
  color: #555;               /* Dark grey text */
}

/* Code blocks */
code,
pre {
  font-family: 'Courier New', monospace;
  background-color: #f4f4f4;  /* Light grey background */
  padding: 0.2rem 0.4rem;      /* Padding around code */
}

pre {
  display: block;
  padding: 1rem;
  background-color: #282828;
  color: #f8f8f8;
  overflow-x: auto;
  border-radius: 5px;
}

/* Form elements */
input,
textarea,
select,
button {
  font-family: 'Sora', sans-serif;
  font-size: 1rem; /* Same as body font */
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;  /* Light grey border */
  border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
  border-color: #007bff; /* Highlight on focus */
}

/* Styling for images */
img {
  max-width: 100%;         /* Ensure images scale responsively */
  height: auto;            /* Maintain aspect ratio */
  display: block;
  margin: 0 auto;
}

/* Basic layout and container styles */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;            /* Center container */
  padding: 1rem;             /* Space inside the container */
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;           /* Negative margin for gutters */
}

.column {
  flex: 1 1 33.33%;          /* Default to 3-column layout */
  padding: 0 15px;           /* Add padding for gutter */
}

/* Table container styling */
.table-container {
  width: 95%;
  max-width: 1000px;
  margin: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Table styling */
.document-table {
  width: 100%;
  border-collapse: collapse;
}

.document-table th, .document-table td {
  padding: 16px;
  text-align: left;
}

.document-table th {
  background-color: #333;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.document-table td {
  background-color: #f9f9f9;
}

.document-table tr:nth-child(even) td {
  background-color: #f1f1f1;
}

.document-table tr:hover {
  background-color: #eef2f7;
}

.document-table a {
  color: #007bff;
  text-decoration: none;
}

.document-table a:hover {
  text-decoration: underline;
}

@media screen and (orientation:portrait) { 
  .column {
    flex: 1 1 100%;          /* Stack columns on small screens */
  }

  .page_outer {

    width: 100%;
    min-width: 100%;
  }

  h2{
    font-size: 1.75rem;
  }

  .document-table th, .document-table td {
    padding: 12px;
  }

}