body {
    font-family: Arial, Helvetica, sans-serif;
}

form {
    border: 2px solid black;
    border-radius: 5px;
}

#picker {
    /* Styles within this block use AI */
    /* Visually hides the input but keeps it accessible to screen readers */
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
    z-index: -1;
    overflow: hidden;
}

label[for="picker"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px;
}

label[for="picker"]:hover {
    background-color: #0056b3;
}

#btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px;
}

#btn:hover {
    background-color: #0056b3;
}