#ui-id-1 {
    font-size: 24px; /* Increase text size */
    line-height: 1.8; /* Increase spacing for easier selection */
    padding: 10px 0; /* Add padding for spacing */
}

#ui-id-1 .ui-menu-item {
    padding: 15px 20px; /* Increase padding for easier touch */
    border-bottom: 1px solid #ccc; /* Add separation between options */
}

#ui-id-1 .ui-menu-item-wrapper {
    display: block;
    padding: 15px 20px; /* Larger clickable area */
    font-weight: bold; /* Make text bolder for readability */
}

#ui-id-1 .ui-menu-item:hover,
#ui-id-1 .ui-menu-item.ui-state-active {
    background-color: #f0f0f0; /* Highlight selected item */
    color: #333;
    cursor: pointer;
}

/* Increase touch target for accessibility */
@media (max-width: 1024px) {
    #ui-id-1 .ui-menu-item-wrapper {
        font-size: 28px;
        padding: 20px 30px;
    }
}
