/* Base Mobile-Friendly Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 15px;
    background-color: #FFFFCE; /* Keeping your classic background */
    color: #333;
}

/* Make tables and forms responsive */
table, form, textarea, input, select {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    margin-bottom: 20px;
}

/* Adjust text inputs and buttons for fingers */
input[type="text"], textarea, select {
    font-size: 16px; /* Prevents iOS zoom on focus */
    padding: 8px;
    margin: 4px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="button"] {
    padding: 10px 15px;
    background: #f0f0f0;
    border: 1px solid #999;
    border-radius: 4px;
    cursor: pointer;
}

/* Center the top link and H1 */
.top-nav, h1 {
    text-align: center;
    margin-bottom: 15px;
}

.footer {
    text-align: center;
    font-size: 0.85em;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}