body {
    font-family: Bitter, 'Crimson Pro', Georgia, Verdana, Sans-serif;
    color:#000;
	background: #f5f5f5;
	text-align: left;
}

.main {
    background: #fff;
    margin-left: 17%;
	margin-right: 17%;
	margin-top: 60px;
	margin-bottom: 30px;
	padding: 90px;
	padding-top: 25px;
	padding-bottom: 20px;
	border: 2px solid #333;
	border-left: 2px dotted #aaa;
	border-right: 2px dotted #aaa;
}

#floating-menu-container {
	display: flex;
	justify-content: center;
	align-items: center; 
}

h1, h2, h3 {
    font-family: Bitter, 'Crimson Pro', Georgia, Verdana, Sans-serif;
    font-weight: 800;
	color: #336699;
	margin-top: 30px;
	margin-bottom: 25px;
	line-height: 165%;
	}

h1 {
	font-size: 34px;
	color:#000;
}

h2 {
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-size: 23px;
	font-weight: 700;
}

p {
	line-height: 165%;
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 16px;
	}

blockquote, q {
    font-family: Bitter, 'Crimson Pro', Georgia, Verdana, Sans-serif;
    font-weight: 600;
	line-height: 175%;
	font-size: 22px;
	color: #336699;
	font-style: italic;
}

a {
	text-decoration: none;
	color:#336699;
	border-bottom: 2px dotted #aaa;
	}

a:hover {
	text-decoration: none;
	border-bottom: 4px solid #000;
	}

hr {
	margin-top: 40px;
	margin-bottom: 40px;
	border-top: 2px dotted #aaa;
}

.navbar {
    position: fixed;
    top: 0;
    width: 65%;
    background: #333333;
    padding: 5px;
    font-size: 18px;
    color: #ffffff;
}

.navbar a {
  display: inline-block;
  margin: 5px;	
  padding: 7px;
  color: #ffffff;
  font-weight:600;
  text-decoration: none;
  border-bottom: none;
}

.navbar a:hover {
  background-color: #fff;
  color: #000;
}

/* General table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1em;
  text-align: left;
}

/* Header cells */
table th {
  background-color: #f2f2f2;
  color: #333;
  font-weight: bold;
  padding: 0.75em;
  border-bottom: 2px solid #ddd;
}

/* Body cells */
table td {
  padding: 0.75em;
  border-bottom: 1px solid #e6e6e6;
  color: #444;
}

/* Row hover highlight */
table tbody tr:hover {
  background-color: #fafafa;
}

/* Striping (alternating rows) */
table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

/* Responsive overflow */
.table-container {
  width: 100%;
  overflow-x: auto;
}

/* Optional caption styling */
table caption {
  caption-side: top;
  text-align: left;
  font-style: italic;
  padding: 0.5em 0;
  color: #666;
}


@media screen and (max-width: 1000px) {
    body {background:#fff;}
		.main {margin-left: 0; margin-right: 0; margin-top: 10px; margin-bottom: 10px; border: 0; padding: 50px; padding-top: 0;}
	h1 {font-size: 34px;}
	h2 {font-size: 28px}
	h3 {font-size: 22px;}
	p {font-size: 22px}
	blockquote, q {font-size: 22px;}
	hr {margin-top: 30px; margin-bottom: 30px;}
	#floating-menu-container {
    display: none;}
}

/* ChatGPT */

ol, ul {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 40px; /* matches typical paragraph left indent */
    font-family: Bitter, Georgia, Verdana, Sans-serif;
    font-size: 22px;
    line-height: 165%;
    color: #000;
}

ol {
    list-style-type: decimal;
}

ol li {
    margin-bottom: 12px;
}

ul {
    list-style-type: disc;
}

ul li {
    margin-bottom: 12px;
}

/* Nested lists indent slightly more */
ol li ol,
ol li ul,
ul li ol,
ul li ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 22px;
}

/* Responsive adjustments */
@media screen and (max-width: 1000px) {
    ol, ul {
        font-size: 22px;
        padding-left: 30px;
    }
    ol li, ul li {
        margin-bottom: 10px;
    }
    ol li ol,
    ol li ul,
    ul li ol,
    ul li ul {
        padding-left: 25px;
        font-size: 18px;
    }
}
