* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

.loser {
  background-color: lightgray;
border: 1px solid blue;
}

.winner {
  background-color: lime;
border: 1px solid blue;
}

.undetermined {
  border: 1px solid blue;
}

/* Header/Blog Title */
.header {
  padding: 50px;
  text-align: center;
  background-image: url("DJI00685Bigger.JPG");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header h1 {
  font-size: 50px;
  font-weight: bold;
  font-style: italic;
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
  padding-top: 5px;
  margin: 10;
}

.header h2 {
  font-size: 10px;
  font-weight: bold;
  font-style: italic;
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
  padding-top: 5px;
  margin: 10;
}

.sheader {

/*  padding: 10px 16px;   Noted 11/17/24*/
  position: fixed;

}

.scontent {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .scontent {
  padding-top: 102px;
}



/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 60%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 40%;
  background-color: #f1f1f1;
  padding-left: 20px;
}


/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

/* Add a card effect for articles */
.cardp {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  height: 300px;
  overflow-y: auto;
}

/* Add a card effect for articles */
.carde {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  height: 1200px;
  overflow-y: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:hover {background-color:#f5f5f5;}


img {
  width: 100%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

/* Sticky header stuff */
.se-card {
  background-color: #fff;
  width: 100%;
/*  max-width: 1000px; */
  height: 728px;
  margin-top: 20px;
  border-radius: 0px;
  overflow-y: auto;
}

.s-card {
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin-top: 20px;
  border-radius: 0px;
  overflow-y: auto;
}

.s-header {
  background-color: #fff;
  color: #000;
  margin-top: 0px;
  text-align: center;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  position: sticky;
  top: 0;
/*      z-index: 1000;  */
}

.s-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: black;
  text-align: left;
  margin: 0;
}

.s-header h5 {
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-align: left;
  padding-top: 10px;
  margin: 0;
}

.s-header h6 {
  font-size: 14px;
  color: black;
  text-align: left;
  padding-top: 10px;
  margin: 0;
}

.s-content {
  padding-left: 20px; 
  padding-right: 20px;
  background-color: #fff;
  color: #000;
  margin-top: 0px;
  text-align: center;
  top: 0;
}

/* end sticky header stuff*/

input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

div {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
