body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background-color: #ffffff; /* Light gray background */
}

img {
  max-width: 600px; /* Example: Maximum width of 500 pixels */
  height: auto; /* Maintain aspect ratio */
}

header {
  background-color: #fff;
  color: #000;
  padding: 20px;
  text-align: center;
}
.menu-bar {
    padding-top: 10px;
    text-align: left;
    font-size: 14px;
}
a.menu-bar {
    text-decoration: none;
    color: black;
    padding-left: 20px;
}

.main-title {
    font-size: 24px;
}
.sub-title {
    font-size: 16px;
    font-style: italic;
}

/* container */
.content-with-sidebars {
    display:grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1.5fr 6fr 1.5fr;
    padding-left: 10px;
    padding-right: 10px;
}

.sidebar {
    border-width: 1px;
    border-color: lightgray;
    border-style: solid;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 24px;
    padding-top: 2px;
    font-size: 14px;
}

.sidebar h2 {
    padding-bottom: 5px;
    border-bottom: 1px solid #d6d6d6;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    color: #666666;
}

.sidebar-divider {
    padding-top: 20px;
}


li.sidebar-list {

    border-style: none;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    line-height: 1.4;
    text-indent: -1.0em; /* Adjust this value to match your bullet/number width */
    padding-left: 1.0em; /* Must be the same value as text-indent but positive */
    padding-bottom: 4px;

    text-align: -webkit-match-parent;
    list-style-type:none;
    list-style-image:url("Attachments/bullet-image.png");
}

a:link, a:visited {
    text-decoration: none;
}
a {
    color: #0072b6;
}

li {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
    margin: 0px;
}
ul.menu {
    border: none;
    list-style: none;
    text-align: left;
}

.small-game {
    padding-left: 20px;
    padding-right: 20px;
}

table.small-game {
    padding-top: 50px;
}

.content {
    padding-left: 30px;
    padding-right: 30px;
}

.container {
    display: flex; /* Make container a flexbox for side-by-side layout */
    align-items: center; /* Vertically align content within the container */
}

.text-container {
    text-align: left;
    margin-left: 10px; /* Add margin to separate text from image */
}

h3 {
  color: #333;
  margin-bottom: 10px;
}

p {
  color: #666; 
  line-height: 1.5;
}

.water_logic_code {
    width: 600px;
    height: 300px
}

pre {
    padding: 10px;
    background-color: rgba(238, 238, 238, 0.34);
    font-size: 14px;
}