* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 1rem;
}

.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

input[type="text"], input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    min-height: 48px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    margin: 0.5rem 0;
    min-height: 48px;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #0056b3;
}

footer {
    margin-top: 2rem;
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding-bottom: 1rem;
}

#checkboxes label {
    display: inline;
}

#anotherDayContainer{
    display: none;
}

@media only screen and (max-width: 600px) {
    body {
        padding: 0.5rem;
    }

    .container {
        width: 95%;
        padding: 0.75rem;
    }

    input[type="text"], input[type="date"] {
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px;
    }

    button {
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px;
    }

    label {
        font-size: 1.1rem;
    }

    footer {
        width: 95%;
    }
}