@charset "utf-8";
/* CSS Document */

:root {
  --main-background-color: #f6d5b6;
  --main-headline-color: #db9;
  --sub-headline-color: #efceaf;
  --main-highlight-color: #c60;
  --sub-highlight-color: #b50;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #f6d5b6;
  margin: 0;
}

#main {
  min-height: 600px;
  margin: 0 auto;
  text-align:center;
  background-color: var(--main-background-color);
}


#banner {
  display: flex;
  justify-content: center;
  background-color: #5C4660;
  font-size:large;
  color: #f6d5b6;
}
  
#logo {
  float:left;
  margin: 20px;
  display: inline-block;
}
#title {
  float: left;
  display: inline-block;
  margin: auto 0px;
}

#content {
  padding: 10px;
}

fieldset.formfieldset {
  margin: 20px auto;
  max-width: 800px;
  background-color: #F5ECD8;
  border: solid 1px #5C4660;
}
.formP {
  margin: 20px auto;
  max-width: 800px;
  font-size: 20px;
}

#bottom {
  border-bottom-width:thick;
}

/*  ALL LINKS  */
a:link  {
  text-decoration: none;
  color: Blue;
}
a:visited  {
  text-decoration: none;
  color: Blue;
}
a:hover  {
  text-decoration: underline;
  color: Darkblue;
}

/* ------------------------- */

img {
  text-decoration: none;
  border: 0;
}

label, input[type=checkbox] {
  cursor: pointer;
}

input[type=button], input[type=submit] {
  margin: 4px 6px;
  border: none;
  background-color: #AED7FF;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-size: large;
  cursor: pointer;
}
input[type=button]:hover, input[type=submit]:hover {
  color: #fff;
}

select {
  width: 95%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-size: 20px;
}

table {
  margin: auto;
}

th {
  color:#006;
}

.hoverRow:hover {
  background-color:  var(--sub-headline-color);
}

p {
  font-size: 20px;
}

.blue {
  background-color:#39F;
}

#red {
  color: #900;
  font-weight: bolder;
}

.center {
  text-align: center;
}

.pageButton {
 display:inline-block; 
 align:right;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    max-width: 400px;
    height: auto;
 font:bold 20px arial;
 border:1px solid #667; /*required or the default border for the browser will appear*/
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 border-radius: 5px;
 background-color: #eee;
 color:blue;
}

.smallPrint {
	font-size: 0.75em;
}

.emphasis {
  font-weight: bold;
}
.red {
  color: red;
}

.formRow {
/* center vertically */
  border: solid 1px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  padding: 3px 0px;
}
.formLabel {
  float: left;
  width: 100%;
  min-width: 300px;
  text-align: left;
  padding-left: 6px;
}
.formInput {
  float: left;
  width: 100%;
  text-align: left;
}

.formRow:after {
  content: "";
  display: table;
  clear: both;
}

.formsectionlegend {
  font-size: xx-large;
  color:#300;
  font-style: oblique;
  font-weight:bold;
}

#leaguelist tr {
  height: 30px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .formRow, .banner {
    display: inline;
  }
  .formLabel, .formInput {
    width: 100%;
    margin-top: 0;
  }
}