/* Centers everything on the screen and gives a nice background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Styles the form to look like a floating white card */
form {
    background-color: #567567;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
}

/* Makes the heading look clean */
h2 {
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

/* Styles the input boxes */
input[type="text"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't make the box wider */
}

/* Styles the submit button */
button {
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Adds a hover effect to the button */
button:hover {
    background-color: #218838;
}