@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  /* overflow: scroll; */
  margin: 0;
}

div.inlineDiv {
  display: flex;
  margin-bottom: 10px;
  margin: auto;
}

div.inlineDiv select {
  margin-top: 30px;
  margin-right: 15px;
}

/* table {
  width: 90%;
  min-width: 150px;
  margin: auto;
  border-collapse: collapse;
  border: 5px solid black;
  margin-bottom: 50px;
} */

#subtitle {
  padding-left: 20px;
  padding-right: 20px;
}

td {
  text-align: center;
}


/* td {
  text-align: center;
  padding: 8px;
}

td {
  border-right: 4px solid black;
}

tr td:last-child {
  border-right: 1px solid black;
}

td.dateCell {
  background-color: lightgray;
  font-weight: bold;
  border-right: 3px solid black;
  border-top: 3px solid black;
  border-bottom: 3px solid black;
  padding-left: 10px;
  padding-right: 10px;
}

td.courtCell {
  background-color: rgb(49, 107, 176);
  color: white;
  border-bottom: 0.5px solid black;
  border-top: 4px solid black;
}

td.teamCell {
  font-size: small;
}

td.byeTeam {
  border-left: 4px solid black;
} */

td {
  border: 1px solid black;
  padding: 10px;
}

th {
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  padding: 5px;
}

table {
  border-collapse: collapse;
  border: 1px solid black;
  box-shadow: 8px 10px 2px 1px rgba(0, 0, 0, 0.1);
}

td:nth-child(1) {
  text-align: center;
  vertical-align: middle;
}

h2#subtitle {
  width: 100%;
  text-align: center;
}

.table-container {
  max-height: 45vh;
  align-content: center;
  vertical-align: middle;
  padding: 10px;
  padding-right: 20px;
  overflow-y: auto;
  border: 1px solid #ccc;
  margin: auto;
}

/* Full-width container with background color */
.outer-container {
  background-color: rgb(49, 107, 176);
  width: 100%;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  padding-top: 30px;
}

/* Inner container for image and text */
.inner-container {
  display: flex;
  align-items: center; /* Vertically center the image and text */
  gap: 20px; /* Space between image and text */
  background-color: rgb(49, 107, 176);
  padding: 20px;
}

/* Image styling */
.inner-container img {
  max-height: 150px; /* Adjust as needed */
  width: auto;
}

/* Basic styling for the menu bar */
.menu-bar {
  background-color: rgb(64, 134, 215);
  width: 100%;
  overflow: hidden;
  text-align: left;
  padding-left: 30px;
}

/* Heading styles */
h1,
h2 {
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 2px 2px #000000;
}

h1 {
  font-size: 2rem; /* Adjust as needed */
}

h2 {
  font-size: 1.5rem; /* Adjust as needed */
}

h2.plainText {
  margin: 0;
  padding: 0;
  color: black;
  text-shadow: none;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

a {
  line-height: 2.5rem;
  color: white;
  padding-bottom: 10px;
}

.home {
  line-height: 2.5rem;
  color: white;
  padding-bottom: 10px;
}

.info_banner a {
  line-height: normal;
  color: rgb(64, 24, 223);
  padding-bottom: 0;
}

.info_banner {
  box-shadow: 8px 10px 2px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 5vh;
  margin-bottom: 10vh;
  margin-left: 5vw;
  margin-right: 5vw;

  border: 1px solid black;
  border-radius: 10px;
  padding: 20px;
}

#pdfDisplayDiv {
  display: none;
}

#hideBtn {
  align-self: flex-start;
  margin-left: 50px;
  margin-top: -40px;
  margin-bottom: 20px;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  text-decoration: underline;
}

.padT {
  margin-top: 20px;
}

.padB {
  margin-bottom: 20px;
}

.dropbtn {
  background-color: #04aa6d;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.spaceMarker {
  color: rgb(49, 107, 176);
}
