/* Reset iOS-specific styles with square buttons */
button, 
button[type="submit"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 0 !important;
    padding: 6px 12px;
    font: inherit;
    color: #333;
    cursor: pointer;
    margin: 2px;
    -webkit-tap-highlight-color: transparent;
}

button:hover,
button[type="submit"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #e0e0e0;
}

/* Style for date input */
input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    border: 1px solid #ccc;
    border-radius: 0 !important;
    padding: 6px;
    font: inherit;
}

/* Style other form elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    border-radius: 0 !important;
    padding: 6px;
}

/* Ensure all buttons and inputs are square */
button,
input,
select,
textarea {
    border-radius: 0 !important;
}
