/* Input Styles */
input[type="number"], input[type="datetime"] {
    font-size: 24pt; /* Keep consistent large font for accessibility */
}

/* Dropdown Styling */
select {
    font-size: 1.5em; /* Adequate size for readability */
    height: 1.6em; 
    padding: 5px 10px; /* Add padding for a cleaner look */
    border: 1px solid #ccc; /* Slight border for definition */
    border-radius: 4px; /* Smooth corners */
    background-color: #f9f9f9; /* Subtle background color */
    -webkit-appearance: none; /* Remove browser default styling */
    -moz-appearance: none; 
    appearance: none;
    margin-bottom: 20px; /* Add spacing between elements */
}

/* Result Section Styling */
#result {
    font-size: 1.2em; /* Ensure the result text is readable */
    font-weight: bold; /* Make the text visually distinct */
    color: #333; /* Neutral, easy-to-read text color */
    margin-top: 20px; /* Space between dropdowns and result */
}

/* Header Styling */
h1 {
    font-size: 1.8em; /* Slightly larger for importance */
    text-align: center; /* Center-align the header */
    color: #222; /* Darker shade for emphasis */
    margin-bottom: 10px;
}

/* Body Styling */
.ui-body-b {
    padding: 20px; /* Add padding to the content */
    background-color: #f5f5f5; /* Light background for content area */
    border-radius: 8px; /* Subtle rounded edges */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow effect */
}

/* Button-Like Dropdowns */
select:hover, select:focus {
    border-color: #007bff; /* Highlight border on hover/focus */
    background-color: #ffffff; /* Brighten background on focus */
}

/* For Mobile */
@media (max-width: 768px) {
    input, select {
        font-size: 1.2em;
        height: auto;
    }

    #result {
        font-size: 1em;
    }
}
