:root {
    --accent-colour: #1d9be4;
}

/* used for the redirection hyperlinks */
a {
    text-decoration: none;
    color: var(--accent-colour);
}

/* Main Body Styles */
body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar it self */
nav {
    background-color: #333;
    color: white;
    padding: 15px 5%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

/* Links in the navbar */
nav a {
    color: white;
    text-decoration: none;
}

/* Main body block */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 5%;
    box-sizing: border-box;
}

/* Form container */
.form-container {
    padding: 2rem;
    background-color: white;
    width: 90%;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* med text */
.med-text {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer box and styles */
footer {
    background-color: #333;
    color: white;
    padding: 10px 5%;
    width: 100%;
    font-size: 0.875rem;
    box-sizing: border-box;
}

/* Styling for the scoreboard table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Styling for the input boxes in the table */
table input {
    max-width: 100px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form input {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent-colour);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.round-separator {
    border: none;
    height: 3px;
    background-color: black;
    margin: 25px 0;
}