css
/* Modern Responsive CSS for the menu page */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 20px;
    background: #f7f7f7;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
}

h1 {
    margin-bottom: 10px;
    font-size: 1.8em;
    font-weight: 600;
}

#todayView, #weekView {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    white-space: pre-line;
    margin-bottom: 20px;
    font-size: 1.2em; /* Increased for better readability */
}

hr {
    margin: 25px 0;
    border: 0;
    height: 1px;
    background: #e0e0e0;
}

textarea {
    width: 100%;
    height: 200px;
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    resize: vertical;
    box-sizing: border-box;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

button {
    margin-top: 15px;
    padding: 16px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #2d7ef7;
    color: white;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
    transition: background 0.2s;
}

button:hover {
    background: #1f5fcc;
}

#status {
    margin-top: 15px;
    color: #28a745;
    font-size: 16px;
    font-weight: 500;
}

h4 {
    padding: 0.2em 0; /* Reduced padding */
    margin: 0.2em 0; /* Reduced margin */
}

/* Modern responsive adjustments */
@media screen and (max-width: 768px) {
    body {
        margin: 15px;
        padding: 0;
        font-size: 18px; /* Increased base font size */
    }

    h1 {
        font-size: 1.6em;
    }

    #todayView, #weekView {
        padding: 15px;
        font-size: 1.1em; /* Increased font size */
    }

    textarea {
        height: 180px;
        font-size: 16px;
    }

    button {
        padding: 16px;
        font-size: 18px;
    }

    hr {
        margin: 20px 0;
    }
}

@media screen and (max-width: 480px) {
    body {
        margin: 10px;
        padding: 0;
        font-size: 18px; /* Increased base font size */
    }

    h1 {
        font-size: 1.4em;
        margin-bottom: 8px;
    }

    #todayView, #weekView {
        padding: 12px;
        font-size: 1.1em; /* Increased font size */
    }

    textarea {
        height: 150px;
        font-size: 16px;
        padding: 12px;
    }

    button {
        padding: 14px;
        font-size: 18px; /* Increased font size */
    }

    #status {
        font-size: 16px;
    }
}

/* Additional improvements for very small screens */
@media screen and (max-width: 320px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.3em;
    }

    #todayView, #weekView {
        font-size: 1.05em;
        padding: 10px;
    }

    button {
        font-size: 16px;
        padding: 12px;
    }
}
