/* Style the page body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
}

/* Style the header */
h1 {
    color: #333;
    margin-bottom: 20px;
}

/* Style the form container */
.form-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style form labels and inputs */
label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Style the Convert button */
button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Style the result container */
.result-container {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style the converted time */
h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

#outputTime {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
}
