body {
    font-family: 'Today Sans Now Pro', sans-serif;
    padding: 20px;
    font-size: 18px;
    margin: 0;
}

.logo{
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 24px;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    margin: 10px auto;
    box-sizing: border-box;
    border: 2px solid #9Acf8c;
}

.content-wrapper {
    width: 100%;
    max-width: 600px; /* Prevents the content from stretching too wide */
    padding: 20px;
    margin: 20px auto; /* Horizontally centers the content and adds space at the top */
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="number"], input[type="submit"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 18px;
}

input[type="submit"] {
    background-color: #9Acf8c;
    color: #1e3565;
    cursor: pointer;
    padding: 15px;
    border: none;
    font-size: 18px;
    font-weight: normal;
}

input[type="submit"]:hover {
    background-color: #8Ac0A1;
}


input[type="number"], input[type="submit"] {
    font-family: 'Today Sans Now Pro', sans-serif;
}

.toggle-button {
    font-family: 'Today Sans Now Pro', sans-serif;
    background-color: #9Acf8c;
    color: #1e3565;
    cursor: pointer;
    padding: 15px;
    border: none;
    font-size: 18px;
    font-weight: normal;
    width: 100%; /* makes the button take the full width of the container */
    box-sizing: border-box; /* includes padding and border in the element's total width and height */
    border-radius: 6px; /* optional: rounds the corners of the button */
    margin-bottom: 20px; /* optional: adds some space below the button */}

.toggle-button:hover {
    background-color: #8Ac0A1; /* slightly darker shade when hovered */
}