body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #fff;
  color: #000;
}

p {
  display: inline;
}

.home-button {
  display: inline-block;
  padding: 5px 15px;
  background-color: white;
  color: #000;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  margin-left: 2rem;
  border: 1px solid #007934;
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #007934;
  color: #fff;
}

#message {
  font-size: 2rem;
  color: #000;
}

img {
  height: 160px;
  width: 140px;
}

.matchImage {
  height: 240px;
  width: 210px;
}

.highlight {
  font-size: 2.8rem;
  color: #C8102E;
}


th img {
  height: 0px;
  width: 0px;
}

header {
  background-color: #fff;
  color: #000;
  box-shadow: 10px 5px 5px #012169;
  padding: 1em 0;
  text-align: center;
  margin-bottom: 20px;

}

header h1 {
  margin: 0;
}

#status {
  color: #007934;
  cursor: default;
}


/* .blinking {
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
} */

#currentDate {
  cursor: default;
  font-size: 1rem;
  color: #012169;
}

.datesection {
  margin-bottom: 2rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 80%;
  text-align: center;
  box-shadow: 10px 5px 5px #012169;
}

section div {
  font-weight: bold;
  color: #fff;
}

#rowSetting {
  display: none;
  border: #fff solid 1px;
  margin-bottom: 4px;
}

.blue {
  background-color: #fff;
  color: white;
  font-style: italic;
}

.green {
  background-color: #007934;
  color: white;
  font-style: italic;
}


#startButton {
  width: 30%;
  height: 30%;
  cursor: pointer;
  margin-bottom: 2rem;
}

.flip-button {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-block: 4rem;
  background-color: #007934;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  border: none;
  cursor: pointer;

  box-shadow:
    0 8px #005f2b,
    0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out;
}

.flip-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px #005f2b,
    0 0 15px rgba(0, 0, 0, 0.5);
}

.flip-button:active {
  transform: translateY(2px);
  box-shadow:
    0 4px #005f2b;
}

table {
  width: 80%;
  border-collapse: collapse;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

caption {
  padding: 10px;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  margin-block: 2rem;
}

thead th {
  color: #fff;
  padding: 10px;
  text-align: left;
}

tbody th,
tbody td {
  padding: 8px;
  text-align: left;
}

tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: none;
}

tbody th {
  font-weight: bold;
}

/* .hidden {
  display: none;
} */

footer {
  text-align: center;
  padding: 1em 0;
  background-color: #fff;
  color: #fff;
  position: sticky;
  bottom: 0;
  width: 100%;
}

@media (max-width: 600px) {
  #startButton {
    width: 80%;
    height: 80%;
  }
}