<style>
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    background-color: #121212;
  }
  .app-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
  h1, h2, h3 {
    color: #ecf0f1;
    text-align: center;
    margin-top: 15px;
  }
  .form-group {
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
  }
  .hole-navigation {
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    justify-content: space-around;
  }
  .player-navigation {
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    justify-content: space-around;
  }
  label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: white;
    text-align: center;
  }
  input[type="text"], select {
    width: 100%;
    padding: 14px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 16px;
    background-color: #333;
    color: #e0e0e0;
  }
  button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
  }
  custom-button {
    background-color: black;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  button:hover {
    background-color: #2980b9;
  }
  .remove-btn {
    background-color: transparent;
    color: #e74c3c;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
    transition: color 0.3s;
  }
  .remove-btn:hover {
    color: #c0392b;
  }
  .player-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  .player-item {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    color: #e0e0e0;
  }
  .player-name {
    margin-right: 10px;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
    background-color: #1e1e1e;
    color: #e0e0e0;
  }
  th, td {
    border: 1px solid #555;
    padding: 10px;
    text-align: left;
  }
  th {
    background-color: #333;
    font-weight: bold;
  }
  .error {
    color: #e74c3c;
    margin-top: 10px;
    text-align: center;
  }
  .icon-section {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .icon-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    text-align: center;
  }
  .icon-item i {
    font-size: 24px;
    margin-bottom: 5px;
    cursor: pointer;
    padding: 10px;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  .icon-item i.active {
    background-color: #3498db;
    color: white;
  }
  .icon-item span {
    font-size: 12px;
    color: white;
  }
  .score-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: #2c3e50;
    border-radius: 8px;
    overflow-x: auto;
    color: white;
    text-align: center;
  }
  .score-summary table {
    min-width: 100%;
    color:white;
  }
  .score-cell {
    cursor: pointer;
    transition: background-color 0.3s;
    color: white;
  }
  .score-cell:hover {
    background-color: #3e4e59;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }
  .modal-content {
    background-color: black;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid black;
    width: 80%;
    max-width: 500px;
    color: #e0e0e0;
    text-align: center;
    border-radius: 15px;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .app-container {
      padding: 10px;
    }
    h1 {
      font-size: 24px;
    }
    h2 {
      font-size: 20px;
    }
    .icon-item {
      width: 60px;
    }
    .icon-item i {
      font-size: 20px;
    }
    .icon-item span {
      font-size: 10px;
    }
    .player-item {
      font-size: 14px;
    }
  }

  
  body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    color:white;
  }
  
  .header {
    background-color: #2c3e50;
    padding: 30px;
    color: white;
    text-align: center;
  }
  
  #navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  #navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  #navbar a:hover {
    background-color: #444;
    color: white;
  }
  
  #navbar a.active {
    background-color: #3498db;
    color: white;
  }
  
  .content {
    padding: 16px;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .sticky + .content {
    padding-top: 60px;
  }

  /* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: gray;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: black;
  color: white;
}
.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
</style>
