
/* 
    Created on : Oct 5, 2024, 9:00:23 AM
    Author     : Dennis Deal
*/


* {
  box-sizing: border-box;
}

td {
    text-align: left;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

.txt-heading {
  font-family: Arial;
  font-size: 36px;
  font-weight: bold;
  padding: 10px;
  color: White;
}

/* Header/Blog Title */
.header {
  padding: 5px;
  text-align: center;
  background: white;
}

.header h1 {
  font-size: 30px;
}

h2 {
  padding: 10px;
  text-align: center;
  background: white;
  font-size: 15px;
  border-style: solid;
}

/* 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: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

.holescore {
    width: 20px;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    font-family: 'Handlee';
}

.sumscore {
    width: 25px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    font-family: 'Handlee';
}

#roundTable tbody tr:not(.firstrow) {
  display: none;
}

.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
}
.buttonGreen {
  background-color: white; 
  color: black; 
  border: 2px solid #04AA6D;
}

.buttonGreen:hover {
  background-color: #04AA6D;
  color: white;
}

.buttonBlue {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
}

.buttonBlue:hover {
  background-color: #008CBA;
  color: white;
}

.buttonRed {
  background-color: white; 
  color: black; 
  border: 2px solid #f44336;
}

.buttonRed:hover {
  background-color: #f44336;
  color: white;
}

.buttonGray {
  background-color: white;
  color: black;
  border: 2px solid #e7e7e7;
}

.buttonGray:hover {background-color: #e7e7e7;}

.buttonBlack {
  background-color: white;
  color: black;
  border: 2px solid #555555;
}

.buttonBlack:hover {
  background-color: #555555;
  color: white;
}


/* 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;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 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%;
  }
}