body {
	background: rgba(102, 51, 0, 1) url(/background.gif) repeat-x;
	color: black;
}
.menu {
	margin: 0 auto;
	margin-left: 0;
	padding: 0;
	height: 30px;
	width: 100%;
	display: block;
	background: url('/topMenuImages.png') repeat-x;
}
.menu .submenu {
  background: none;
}
.menu li {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline;
}
table {
  width: 95%;
  margin-left: 10px;
  border-collapse: collapse;
}
th {
  text-align: left;
  padding: 5px;
}
.filter {
	cursor: pointer;
}
.trackTable {
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    border: 1px solid black;
    box-sizing: border-box;
    flex: 1 1 25%;
}
.trackTable th {
    margin: 0;
    padding: 0;
    border: 1px solid black;
    height: 50px;
    background: rgb(242, 195, 9);
}
#trackTable {
    margin: auto;
    margin-bottom: 0.5%;
    padding: 0;
    width: 99%;
    border: 2px solid black;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
}
.trackTable td {
	border: 1px solid black;
}
.trackTable th {
	text-align: center;
}
td {
  padding: 3px;
  border: 1px solid rgb(170, 160, 65);
}
.menu li a {
	float: left;
	padding-left: 15px;
	display: block;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	cursor: pointer;
	background: url('/topMenuImages.png') 0px -30px no-repeat;
}
#go, #clear {
	background-color: rgb(78, 64, 3);
	color: white;
	padding: 5px;
	cursor: pointer;
	border: none;
}
.menu li a span {
	line-height: 30px;
	float: left;
	display: block;
	padding-right: 15px;
	background: url('/topMenuImages.png') 100% -30px no-repeat;
}

.menu li a:hover {
	background-position: 0px -60px;
	color: rgba(255, 255, 255, 1);
}

.menu li a:hover span { background-position: 100% -60px; }
.menu li a.active,
.menu li a.active:hover {
	line-height: 30px;
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: url('/topMenuImages.png') 0px -90px no-repeat;
	color: rgba(102, 51, 0, 1);
}

.menu li a.active span,
.menu li a.active:hover span {
	background: url('/topMenuImages.png') 100% -90px no-repeat;
}

#main {
	margin: auto;
	width: 900px;
	height: auto;
	min-height: 1000px;
	background: rgba(255, 204, 0, 1);
	font-family: Arial;
	overflow: auto;
}

#main p {
	color: rgba(102, 51, 0, 1);
	font-size: 200%;
	width: 500px;
	background: rgba(255, 204, 0, 1);
	margin-left: 50px;
}

#main p2 {
	color: rgba(102, 51, 0, 1);
	font-size: 100%;
	display: inline;
	margin-left: 0px;
}

#text {
	margin-left: 100px;
	padding: 5px;
	color: rgba(102, 51, 0, 1);
}

#text2 {
	margin-left: 220px;
	padding: 5px;
	color: rgba(102, 51, 0, 1);
}

#month {
	color: rgba(102, 51, 0, 1);
	font-size: 75%;
	width: 500px;
	margin-left: 25px;
	border-bottom-style: solid;
	border-bottom-color: rgba(255, 255, 255, 1);
	border-bottom-width: 2px;
	border-right-style: solid;
	border-right-color: rgba(255, 255, 255, 1);
	border-right-width: 2px;
	padding: 5px;
}

#right {
	float: right;
	color: rgba(102, 51, 0, 1);
	height: auto;
	width: 250px;
	/* border-left-style: dashed ; 
	border-left-color: rgba(102, 51, 0, 1); 
	border-left-width: 1px; */
	background: rgba(230, 221, 139, 1) url(/shadow1.gif) repeat-y;
	display: inline;
}

#footer {
	color: rgba(255, 255, 255, 1);
	font-size: 90%;
	text-align: center;
	font-family: Arial;
}

.filterbox { border: 2px solid rgba(102, 51, 0, 1); }
.filterbox input { margin: 0.4vh 0.5vw; }
.filterbox {
	display: block;
	margin: 1vh 1vw;
	font-size: 14px;
}

label {display: inline-block; }
legend, label { font-weight: 600; }
legend {
	font-size: 15px;
	padding: 0.2em 0.5em;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

legend:before {
	position: absolute;
	content: '';
	height: 8px;
	border-right: 2px solid rgba(102, 51, 0, 1);
	left: 0px;
	top: 7px;
}

legend:after {
	position: absolute;
	content: '';
	height: 8px;
	border-right: 2px solid rgba(102, 51, 0, 1);
	right: 0px;
	top: 7px;
}

th { cursor: default; }
th[data-active] {
	position: relative;
	cursor: pointer;
	min-width: 75px;
}

li {
  margin-left: 20px;
  padding: 5px;
}

.images {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}

.image {
    width: auto;
  border: none;
  height: 300px;
}

.images a {
    display: flex;             /* Makes <a> behave like a block/flex item */
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background-color: #181818;
    border-radius: 10px;
    overflow: hidden;          /* Prevents image from overflowing rounded corners */
    transition: transform 0.2s ease;
}

/* 3. Image Styling */
.images a {
    width: 100%;
    height: 180px;             /* Fixed height or percentage depending on layout */
    object-fit: cover;         /* Preserves aspect ratio without stretching distortion */
    display: block;            /* Removes default inline bottom gap */
}

th[data-active="true"]:before,
th[data-active="true"]:after {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	top: 50%;
	right: 5px;
	color: rgba(0, 0, 0, 1);
	border: 4px solid transparent;
}

th[data-active="true"].ascending:before {
	border-bottom-color: #000;
	margin-top: -9px;
}

th[data-active="true"].descending:after {
	border-top-color: #000;
	margin-top: 1px;
}
#data-table td { padding: 2px 2px; }
#data-table,
#data-table th,
#data-table td {
	border: 1px solid rgba(0, 0, 0, 1);
	font-size: 14px;
}

#data-table {
	margin: 1vh 1vw;
	width: calc(100% - 2vw);
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}