body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #007BFF;
    color: white;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    text-align: center;
    padding: 20px;
}

footer {
    text-align: center;
    background: #f1f1f1;
    padding: 10px;
    margin-top: 20px;
}
/* Goal Scoring Calculator Styling */
#goal-calculator {
    background-color: #f2f2f2; /* light gray background */
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    max-width: 500px;
}

#goal-calculator h2 {
    color: #2c3e50; /* dark blue/gray for headings */
    margin-bottom: 10px;
}

#goal-calculator label {
    font-weight: bold;
}

#goal-calculator input {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#goal-calculator button {
    background-color: #27ae60; /* green button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#goal-calculator button:hover {
    background-color: #219150; /* slightly darker green on hover */
}

#goal-calculator #result {
    margin-top: 15px;
    font-weight: bold;
    color: #e74c3c; /* red for result to make it stand out */
}

nav a.active {
  pointer-events: none;
  color: gray; /* Optional: show it’s inactive */
  text-decoration: underline;
}
